8 lines
146 B
Bash
Executable file
8 lines
146 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -eu
|
|
if [ "${1:-}" = "--version" ]; then
|
|
echo "Jailer v1.8.0 (bundled shim)"
|
|
exit 0
|
|
fi
|
|
echo "bundled jailer shim"
|
|
exit 0
|