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