summary refs log tree commit diff
path: root/scripts/test-non-cwd-exec.sh
blob: 7d33c46f89265b7e4b9c15fb4952293f9b3c4fda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env nix-shell
#!nix-shell -i "bash -x" -p bash jq git nodejs
npm i
npm run setup || exit 1

export OWD="$PWD"
export NWD="`mktemp -d`"
echo "Src dir: $OWD"
echo "Exec dir: $NWD"

#NODE_PATH="$OWD/dist"
node "$OWD/dist/api/start.js"