mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-04-28 03:10:32 +00:00
13 lines
149 B
Bash
Executable File
13 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p bin dist
|
|
if [ -e "./scripts/$1" ]; then
|
|
./scripts/"$@"
|
|
else
|
|
exec "$@"
|
|
fi
|
|
|
|
|
|
chown -R "$DAPPER_UID:$DAPPER_GID" .
|