Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 3fca8df

Browse files
committed
WIP: use md5sum for ubuntu
1 parent 38fd5ea commit 3fca8df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ install:
4545
# Log HTTP requests
4646
- npm config set loglevel http
4747
- npm install -g npm@2.5
48-
- if [[ `md5 -q npm-shrinkwrap.json` == `md5 -q node_modules/npm-shrinkwrap.ng-hack.json` ]]; then echo "shrinkwrap changed. blowing away node_modules"; rm -rf node_modules; fi
48+
- md5sum npm-shrinkwrap.json
49+
- if [[ `md5sum npm-shrinkwrap.json` == `md5sum node_modules/npm-shrinkwrap.ng-hack.json` ]]; then echo "shrinkwrap changed. blowing away node_modules"; rm -rf node_modules; fi
4950
- time npm install
5051
- cp npm-shrinkwrap.json node_modules/npm-shrinkwrap.ng-hack.json
5152

0 commit comments

Comments
 (0)