forked from pichenettes/mutable-dev-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1_clone-code.sh
executable file
·38 lines (33 loc) · 1.14 KB
/
1_clone-code.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
# set -x
# Code is stored in the VM itself
# CODE_ROOT=/home/vagrant
# Code is stored in a directory shared between the VM and the host.
CODE_ROOT=/vagrant
WORKING_DIR_NAME=eurorack-modules
DEV_ENV="${CODE_ROOT}/${WORKING_DIR_NAME}"
MI_REPO="https://github.com/pichenettes/eurorack.git"
# test if the dev_env directory already exists
if [ -d "$DEV_ENV" ]; then
echo "WARNING: Working directory ${DEV_ENV} already exists, skipping git clone"
else
# Clone the modules source code. If there was a alternative git URL
# provided as an argument to this script, than it will be clone.
# Otherwise, the default MI repo will be cloned.
cd $CODE_ROOT
USER_GITHUB_URL=$1
if [ $USER_GITHUB_URL ]; then
# Get from a clone of the custom repo.
git clone $USER_GITHUB_URL $WORKING_DIR_NAME
cd $DEV_ENV
git remote add pichenettes $MI_REPO
else
# Get from the original repo.
git clone $MI_REPO $WORKING_DIR_NAME
cd $DEV_ENV
fi
git submodule init
git submodule update
fi
# after logging in, cd directly to the code directory
echo "cd $DEV_ENV" >> ~/.bashrc