forked from jerryscript-project/js-remote-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.sh
executable file
·19 lines (16 loc) · 840 Bytes
/
init.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/bash
PROJECTS_DIR="projects"
if [ -d $PROJECTS_DIR ]; then
echo "The \"$PROJECTS_DIR\" folder already exists, please remove it first!"
exit 1
else
mkdir $PROJECTS_DIR
fi
git -C $PROJECTS_DIR clone https://github.com/jameswalmsley/kconfig-frontends.git
git -C $PROJECTS_DIR clone https://github.com/texane/stlink.git
git -C $PROJECTS_DIR clone https://github.com/Samsung/iotjs.git
git -C $PROJECTS_DIR clone https://github.com/jerryscript-project/jerryscript.git
git -C $PROJECTS_DIR clone -b "nuttx-7.19" https://bitbucket.org/nuttx/apps.git
git -C $PROJECTS_DIR clone -b "nuttx-7.19" https://bitbucket.org/nuttx/nuttx.git
git -C $PROJECTS_DIR clone -b "gh-pages" https://github.com/Samsung/iotjs-test-results.git
git -C $PROJECTS_DIR clone -b "gh-pages" https://github.com/jerryscript-project/jerryscript-test-results.git