10 lines
158 B
Bash
Executable File
10 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
TOP=@out@/share/kube-system-bootstrap
|
|
dest=kube-system-bootstrap
|
|
[ $# = 1 ] && dest=$1
|
|
cp -r $TOP $dest
|
|
chmod -R ug+w $dest
|
|
|
|
# vim:ft=sh
|