1
0
mirror of https://github.com/rancher/os.git synced 2025-09-29 06:25:07 +00:00
Files
os/scripts/entry

12 lines
157 B
Plaintext
Raw Normal View History

2016-05-06 10:12:09 -07: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