1
0
mirror of https://github.com/rancher/cli.git synced 2026-02-05 09:48:36 +01:00
Files
cli/scripts/entry

12 lines
161 B
Plaintext
Raw Permalink Normal View History

2016-05-26 20:00:15 -07:00
#!/bin/bash
set -e
trap "chown -R $DAPPER_UID:$DAPPER_GID ." exit
2016-07-27 17:55:02 -07:00
mkdir -p bin build/bin dist
2016-05-26 20:00:15 -07:00
if [ -e ./scripts/$1 ]; then
./scripts/"$@"
else
"$@"
fi