7 lines
129 B
Bash
7 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "applying skel..."
|
||
|
cp -r skel/. /
|
||
|
|
||
|
echo "ensuring /home/git/docker-shell a+x..."
|
||
|
chmod a+x /home/git/docker-shell
|