8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
|
#!/bin/bash
|
||
|
# Execute subcommand (eg 'yarn <cmd> ...')
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export PATH="./out/extracted/node/bin:$PATH"
|
||
|
./out/extracted/node/bin/yarn $*
|