mirror of
https://github.com/rancher/os.git
synced 2025-05-10 09:05:02 +00:00
12 lines
157 B
Plaintext
12 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
trap "chown -R $DAPPER_UID:$DAPPER_GID ." exit
|
||
|
|
||
|
mkdir -p bin dist build
|
||
|
if [ -e ./scripts/$1 ]; then
|
||
|
./scripts/"$@"
|
||
|
else
|
||
|
"$@"
|
||
|
fi
|