diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-02 16:57:59 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-02 17:01:21 +0300 |
commit | f915b1981feef2146924a9556285993bc08dfcbe (patch) | |
tree | 5de00def4771d82746ca71cc9d2dbffa2d7a1957 /test/integration/docker/test.sh | |
parent | README: fix a typo (diff) | |
download | cgitize-f915b1981feef2146924a9556285993bc08dfcbe.tar.gz cgitize-f915b1981feef2146924a9556285993bc08dfcbe.zip |
test/integration/docker: remove output directory
Diffstat (limited to '')
-rwxr-xr-x | test/integration/docker/test.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/integration/docker/test.sh b/test/integration/docker/test.sh index 7948be0..58ccaca 100755 --- a/test/integration/docker/test.sh +++ b/test/integration/docker/test.sh @@ -10,6 +10,7 @@ readonly script_name readonly ssh_dir="$script_dir/ssh" readonly client_key_password='password' +readonly output_dir="$script_dir/client/output" dump() { local prefix="${FUNCNAME[0]}" @@ -29,6 +30,7 @@ cleanup() { remove_ssh_keys kill_ssh_agent + rm -rf -- "$output_dir" } generate_ssh_keys() { |