mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Fix yarn.sh failing with linked out folder
This commit is contained in:
parent
53c6714857
commit
f05e5b448d
1 changed files with 1 additions and 2 deletions
|
@ -3,13 +3,12 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
PATH=../out/extracted/node/bin
|
PATH=$(realpath ../out/extracted/node/bin)
|
||||||
|
|
||||||
../out/extracted/node/bin/yarn $*
|
../out/extracted/node/bin/yarn $*
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
PATH=out/extracted/node/bin
|
|
||||||
./node_modules/.bin/license-checker-rseidelsohn --production --json \
|
./node_modules/.bin/license-checker-rseidelsohn --production --json \
|
||||||
--excludePackages anki --relativeLicensePath \
|
--excludePackages anki --relativeLicensePath \
|
||||||
--relativeModulePath > ts/licenses.json
|
--relativeModulePath > ts/licenses.json
|
||||||
|
|
Loading…
Reference in a new issue