Files
stash/vendor/github.com/asticode/go-astikit/.travis.sh
2022-05-06 11:59:28 +10:00

8 lines
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