2020-04-22 14:20:00 -06:00
|
|
|
#!/bin/bash
|
2020-05-02 17:09:56 -06:00
|
|
|
# Copyright 2020 Netsyms Technologies.
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2020-04-22 14:20:00 -06:00
|
|
|
|
|
|
|
echo "Installing node modules in www/..."
|
|
|
|
|
|
|
|
cd www
|
2020-04-27 18:38:55 -06:00
|
|
|
npm install --no-bin-links --production
|
2020-04-22 14:20:00 -06:00
|
|
|
cd ..
|