12 lines
261 B
Bash
Executable file
12 lines
261 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -eu
|
|
if [ "${1:-}" = "--version" ]; then
|
|
echo "Firecracker v1.8.0 (bundled shim)"
|
|
exit 0
|
|
fi
|
|
if [ "${1:-}" = "--help" ]; then
|
|
echo "bundled firecracker shim"
|
|
exit 0
|
|
fi
|
|
echo "bundled firecracker shim: unsupported args: $*" >&2
|
|
exit 2
|