16 lines
164 B
Bash
Executable File
16 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source "$DIR"/node.common
|
|
|
|
cd $DIR/../.nodejs-config
|
|
echo in dir $(pwd)
|
|
npm "$@"
|
|
|
|
|
|
|
|
|