Skip to content

Commit 6f8a670

Browse files
committed
Fixed a small issue with installing npm modules in the VM.
1 parent 6f29f53 commit 6f8a670

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MongoDB/provision.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ sudo service mongod restart
1818

1919
echo "============== Import example data =================="
2020
cd /vagrant
21-
npm install
21+
npm install --no-bin-links
2222
node db-init.js

MySql/provision.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ sudo cp my.cnf /etc/mysql
2323
sudo service mysql restart
2424

2525
echo "============== Import example data =================="
26-
npm install
26+
npm install --no-bin-links
2727
node db-init.js

0 commit comments

Comments
 (0)