Update start.sh
Browse files
start.sh
CHANGED
|
@@ -6,7 +6,7 @@ if [ -z "$GITHUB_TOKEN" ]; then
|
|
| 6 |
exit 1
|
| 7 |
fi
|
| 8 |
|
| 9 |
-
REPO_DIR="/app/
|
| 10 |
|
| 11 |
if [ -d "$REPO_DIR/.git" ]; then
|
| 12 |
echo "Repo exists, pulling latest changes..."
|
|
@@ -15,7 +15,7 @@ if [ -d "$REPO_DIR/.git" ]; then
|
|
| 15 |
git pull
|
| 16 |
else
|
| 17 |
echo "Cloning private repo..."
|
| 18 |
-
git clone https://$GITHUB_TOKEN@github.com/reaperofssa/
|
| 19 |
cd "$REPO_DIR"
|
| 20 |
fi
|
| 21 |
|
|
|
|
| 6 |
exit 1
|
| 7 |
fi
|
| 8 |
|
| 9 |
+
REPO_DIR="/app/chatlyst"
|
| 10 |
|
| 11 |
if [ -d "$REPO_DIR/.git" ]; then
|
| 12 |
echo "Repo exists, pulling latest changes..."
|
|
|
|
| 15 |
git pull
|
| 16 |
else
|
| 17 |
echo "Cloning private repo..."
|
| 18 |
+
git clone https://$GITHUB_TOKEN@github.com/reaperofssa/chatlyst.git "$REPO_DIR"
|
| 19 |
cd "$REPO_DIR"
|
| 20 |
fi
|
| 21 |
|