mirror of
https://github.com/facebook/zstd.git
synced 2025-12-08 00:03:24 -05:00
Adds the new CLI testing platform that I'm proposing. See the added `README.md` for details.
8 lines
101 B
Bash
Executable File
8 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$EXEC_PREFIX" ]; then
|
|
"$ZSTD_BIN" $@
|
|
else
|
|
$EXEC_PREFIX "$ZSTD_BIN" $@
|
|
fi
|