mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-03 20:39:49 -05:00
11 lines
144 B
Bash
Executable file
11 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 .
|