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