We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4cd44f commit 5f8177dCopy full SHA for 5f8177d
src/test/resources/symlinks/regen.sh
@@ -13,4 +13,8 @@ echo -ne 'content' > entry2
13
zip --symlinks ../non_existing_symlink.zip entry1 entry2
14
cd ..
15
rm -rf non_existing_symlink
16
-LC_ALL=C sed -i '' 's/entry2/entry1/' non_existing_symlink.zip
+if [ "x$(uname)" = "xLinux" ];then
17
+ LC_ALL=C sed -i 's/entry2/entry1/' non_existing_symlink.zip
18
+else
19
+ LC_ALL=C sed -i '' 's/entry2/entry1/' non_existing_symlink.zip
20
+fi
0 commit comments