6 lines
78 B
Bash
6 lines
78 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# cd into package directory and run npm install
|
||
|
|
cd $1;
|
||
|
|
npm install
|