7 lines
117 B
Plaintext
7 lines
117 B
Plaintext
|
#!/bin/bash
|
||
|
DIR=$(dirname "$0")
|
||
|
DATA_DIR="$DIR/data/$(hostname)"
|
||
|
cd $DATA_DIR || return
|
||
|
npm uninstall --save $1
|
||
|
cd -
|