mirror of
https://github.com/josmo/drone-rancher.git
synced 2026-06-16 14:50:35 +08: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 dist
|
|
if [ -e ./scripts/$1 ]; then
|
|
exec ./scripts/"$@"
|
|
else
|
|
exec "$@"
|
|
fi
|