mirror of
https://github.com/facebook/zstd.git
synced 2025-04-21 23:05:51 +03:00
Avoids a race condition in which we unintentionally open up permissions to the wrong group.
9 lines
104 B
Bash
Executable File
9 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
datagen | zstd -q > file.zst
|
|
chmod 642 file.zst
|
|
|
|
zstd -dq --trace-file-stat file.zst
|