mirror of
https://github.com/asticode/go-astikit.git
synced 2025-12-24 11:50:53 +08:00
8 lines
178 B
Bash
Executable File
8 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$(go list -m all)" != "github.com/asticode/go-astikit" ]; then
|
|
echo "This repo doesn't allow any external dependencies"
|
|
exit 1
|
|
else
|
|
echo "cheers!"
|
|
fi |