diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-11 17:13:17 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-11 17:13:17 +0300 |
commit | 68d795158f31f349599dfb59e435ca4daf7370bc (patch) | |
tree | 7deacbc36476656dbcad8ab766bdcf2ad8f37d0c /.travis/bin/show_status.sh | |
parent | Travis: prettier output (diff) | |
download | vk-scripts-68d795158f31f349599dfb59e435ca4daf7370bc.tar.gz vk-scripts-68d795158f31f349599dfb59e435ca4daf7370bc.zip |
Travis: restructure .travis/
Diffstat (limited to '')
-rwxr-xr-x | .travis/bin/show_status.sh (renamed from .travis/test/show_status.sh) | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis/test/show_status.sh b/.travis/bin/show_status.sh index ff0ce47..c9f8e26 100755 --- a/.travis/test/show_status.sh +++ b/.travis/bin/show_status.sh @@ -7,12 +7,16 @@ set -o errexit -o nounset -o pipefail +script_dir="$( dirname -- "${BASH_SOURCE[0]}" )" +script_dir="$( cd -- "$script_dir" && pwd )" +readonly script_dir + test_users() { - ./.travis/test.sh bin.show_status "$@" + "$script_dir/../lib/test.sh" bin.show_status "$@" } main() { test_users egor.tensin } -main "$@" +main |