mirror of
https://github.com/rancher/os.git
synced 2025-06-21 20:47:04 +00:00
15 lines
166 B
Bash
Executable File
15 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p bin dist build/initrd
|
|
if [ -e ./scripts/$1 ]; then
|
|
./scripts/"$@"
|
|
else
|
|
"$@"
|
|
fi
|
|
|
|
EXIT=$?
|
|
|
|
chown -R $DAPPER_UID:$DAPPER_GID .
|
|
|
|
exit $EXIT
|