diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-24 11:18:29 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-24 11:18:29 +0100 |
commit | 40b95e145faf8781cbb12215c07a62c846c214fe (patch) | |
tree | 925d1ede98884aff19bfb0c87986be0f438db5b5 /test | |
parent | workflows: upgrade actions (diff) | |
parent | README: update (diff) | |
download | config-links-40b95e145faf8781cbb12215c07a62c846c214fe.tar.gz config-links-40b95e145faf8781cbb12215c07a62c846c214fe.zip |
Merge tag 'v2.0.2' into debian
Diffstat (limited to '')
-rwxr-xr-x | test/test.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh index f2abfde..05c5d65 100755 --- a/test/test.sh +++ b/test/test.sh @@ -32,7 +32,9 @@ new_test() { echo ====================================================================== echo "New test: $test_name" - test_root_dir="$( mktemp --directory )" + test_root_dir="$( mktemp -d )" + # mktemp returns /var/..., which is actually in /private/var/... on macOS. + test_root_dir="$( readlink -e -- "$test_root_dir" )" test_src_dir="$test_root_dir/$src_dir_name" test_dest_dir="$test_root_dir/$dest_dir_name" test_alt_dest_dir="$test_root_dir/$alt_dest_dir_name" |