mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-23 10:28:05 +00:00
9 lines
244 B
Plaintext
9 lines
244 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# A wrapper to use compel-host right from the source dir
|
||
|
# (i.e. when it is not yet installed).
|
||
|
|
||
|
COMPEL_UNINSTALLED_ROOTDIR=$(dirname "$0")
|
||
|
export COMPEL_UNINSTALLED_ROOTDIR
|
||
|
exec "${COMPEL_UNINSTALLED_ROOTDIR}/compel-host-bin" "$@"
|