1695d65992
Change-Id: I4718d0b64f553db3453c1b80c0ea455cf1f685bc
11 lines
315 B
Bash
11 lines
315 B
Bash
#!/bin/bash
|
|
|
|
BIN_DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
WORKSPACE="$(dirname "$BIN_DIR")"
|
|
|
|
# Add our new bin directory to the PATH
|
|
echo "Adding $WORKSPACE/.local/bin to PATH"
|
|
export PATH=$WORKSPACE/.local/bin:$PATH
|
|
echo "Adding $WORKSPACE/node_modules/.bin to PATH"
|
|
export PATH=$WORKSPACE/node_modules/.bin:$PATH
|