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
|