mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-28 20:09:08 +00:00
12 lines
144 B
Bash
Executable File
12 lines
144 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 .
|