1
0
mirror of https://github.com/rancher/os.git synced 2025-05-10 09:05:02 +00:00
os/scripts/entry

12 lines
157 B
Plaintext
Raw Normal View History

2016-05-06 17:12:09 +00:00
#!/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