mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 09:36:21 +00:00
6 lines
78 B
Bash
6 lines
78 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# cd into package directory and run npm install
|
||
|
|
cd $1;
|
||
|
|
npm install
|