singe/thirdparty/zstd/tests/cli-tests/basic/output_dir.sh
2023-11-14 22:16:48 -06:00

7 lines
262 B
Bash
Executable file

#!/bin/sh
println "+ zstd -r * --output-dir-mirror=\"\""
zstd -r * --output-dir-mirror="" && die "Should not allow empty output dir!"
println "+ zstd -r * --output-dir-flat=\"\""
zstd -r * --output-dir-flat="" && die "Should not allow empty output dir!"
exit 0