mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 12:25:23 +01:00
8 lines
No EOL
178 B
Bash
8 lines
No EOL
178 B
Bash
#!/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 |