8 lines
81 B
Bash
8 lines
81 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Installing node modules in www/..."
|
||
|
|
||
|
cd www
|
||
|
npm install
|
||
|
cd ..
|