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.
10 lines
111 B
Bash
Executable File
10 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
datagen > file
|
|
chmod 642 file
|
|
|
|
zstd file -q --trace-file-stat -o file.zst
|
|
zstd -tq file.zst
|