dropshell/build_amd64/_deps/zstd-src/tests/cli-tests/file-stat/compress-file-to-dir-without-write-perm.sh
Your Name bd1ad20990
Some checks failed
Dropshell Test / Build_and_Test (push) Has been cancelled
dropshell release 2025.0513.2134
2025-05-13 21:34:59 +12:00

13 lines
163 B
Bash
Executable File

#!/bin/sh
# motivated by issue #3523
datagen > file
mkdir out
chmod 000 out
zstd file -q --trace-file-stat -o out/file.zst
zstd -tq out/file.zst
chmod 777 out