mirror of
https://github.com/facebook/zstd.git
synced 2025-12-27 08:14:12 +02:00
8 lines
262 B
Bash
8 lines
262 B
Bash
|
|
#!/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
|