10 lines
192 B
Text
10 lines
192 B
Text
|
#!/usr/bin/with-contenv bash
|
|||
|
|
|||
|
# install app
|
|||
|
[[ ! -d /app/headphones/.git ]] && \
|
|||
|
git clone https://github.com/rembo10/headphones.git /app/headphones
|
|||
|
|
|||
|
# permissions
|
|||
|
chown -R abc:abc \
|
|||
|
/app
|