forked from Strider-CD/strider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.sh
executable file
·45 lines (35 loc) · 1.24 KB
/
dev.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
39
40
41
42
43
44
45
#!/bin/bash
# simple script to set up an environment to hack on.
# installs all strider-* deps as git clone's from the master branch.
# you can hack on them by editing under node_moduldes/strider-foo
ARGS=$@
case "${ARGS[@]}" in *"--sudo-link"*) SUDOLINK="sudo" ;; esac
case "${ARGS[@]}" in *"--ignore-link-fail"*) IGNORELINKFAIL="YES" ;; esac
npm install lodash
DEPS=$(node -e "var _ = require('lodash'), deps = _.keys(require('./package').dependencies); console.log(_.filter(deps, function(i){ return /^strider-/.test(i) }).join(' '));")
BASE="[email protected]:Strider-CD"
mkdir -p node_modules
for module in $DEPS
do
if [ ! -d ../$module ]; then
git clone $BASE/$module ../$module
fi
pushd ../$module
npm i
popd
if [ ! -L $PWD/node_modules/$module ]; then
$SUDOLINK npm link ../$module
if [ $? != 0 ]; then
echo "Failed to link $module"
if [ -z $SUDOLINK ]; then
echo "You may need to use root for npm link, pass in --sudo-link to run the command with sudo."
fi
if [ -z $IGNORELINKFAIL ]; then
echo "If you want to ignore link failures, pass in --ignore-link-fail"
exit -1
fi
fi
fi
done
npm i
echo "> Strider is set up! Hack on modules under node_modules. They are git repos!"