15 lines
245 B
Bash
Executable File
15 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
mkdir /work
|
|
cd /work
|
|
|
|
REPO_URL="https://github.com/daneren2005/Subsonic.git"
|
|
#REPO_URL="https://github.com/vector-im/element-android.git"
|
|
|
|
git clone $REPO_URL repo --recurse-submodules
|
|
cd repo || exit
|
|
|
|
/bin/bash
|