mirror of
https://github.com/harvester/vm-import-controller.git
synced 2025-06-03 01:44:51 +00:00
12 lines
139 B
Bash
Executable File
12 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p bin
|
|
if [ -e ./scripts/$1 ]; then
|
|
./scripts/"$@"
|
|
else
|
|
exec "$@"
|
|
fi
|
|
|
|
chown -R $DAPPER_UID:$DAPPER_GID .
|