File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " Production Quality Meteor Deployments" ,
5
5
"main" : " lib/index.js" ,
6
6
"bin" : {
7
- "mup" : " ./lib/ index.js"
7
+ "mup" : " ./index.js"
8
8
},
9
9
"scripts" : {
10
10
"prepublish" : " nofat build" ,
11
- "test" : " nofat build && nofat test && nofat lint"
11
+ "test" : " nofat test && nofat lint"
12
12
},
13
13
"repository" : {
14
14
"type" : " git" ,
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env node
2
-
3
1
import modules from './modules/' ;
4
2
import MupAPI from './mup-api' ;
5
3
import checkUpdates from './updates' ;
Original file line number Diff line number Diff line change @@ -32,15 +32,17 @@ echo '' > ~/.ssh/known_hosts
32
32
ssh-keygen -f new -t rsa -N ' '
33
33
chmod 600 new.pub
34
34
sudo chown root:root new.pub
35
- eval ` ssh-agent`
36
- ssh-add new
35
+ eval ` ssh-agent`
36
+ ssh-add new
37
37
sudo docker rm -f $( sudo docker ps -aq) 2> /dev/null
38
38
if [[ -z $( sudo docker images -aq mybase) ]]; then
39
39
sudo docker build -t mybase .
40
40
fi
41
41
42
42
cd $MUP_DIR
43
43
npm install
44
+ npm run prepublish
44
45
sudo npm link
45
46
} > /dev/null
47
+
46
48
parallel --progress -j $MOCHA_PARALLEL run_test ::: < /tmp/tests/tests.list
You can’t perform that action at this time.
0 commit comments