mirror of
https://github.com/rancher/cli.git
synced 2026-02-05 09:48:36 +01:00
12 lines
161 B
Bash
Executable File
12 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
trap "chown -R $DAPPER_UID:$DAPPER_GID ." exit
|
|
|
|
mkdir -p bin build/bin dist
|
|
if [ -e ./scripts/$1 ]; then
|
|
./scripts/"$@"
|
|
else
|
|
"$@"
|
|
fi
|