diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 20:23:16 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 20:23:16 +0200 |
commit | a87914970bb985176ad09c422f0942908492de0f (patch) | |
tree | 5d0750cba12a80970a76e782667f57bf541d8398 /test/linux-home | |
parent | t/d: move docker-compose.yml to docker/ (diff) | |
download | config-links-a87914970bb985176ad09c422f0942908492de0f.tar.gz config-links-a87914970bb985176ad09c422f0942908492de0f.zip |
t/l: fail unless $CI is set
Diffstat (limited to 'test/linux-home')
-rwxr-xr-x | test/linux-home/test.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/linux-home/test.sh b/test/linux-home/test.sh index f4b1028..edb2d5b 100755 --- a/test/linux-home/test.sh +++ b/test/linux-home/test.sh @@ -83,8 +83,12 @@ show_env() { } main() { - show_env + if [ -z "${CI:+x}" ]; then + echo "$script_name: please don't run it outside of CI runs" >&2 + exit 1 + fi + show_env test_my_dotfiles_work } |