mirror of
https://github.com/ankitects/anki.git
synced 2026-04-02 02:26:29 -04:00
11 lines
307 B
Bash
Executable File
11 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
# Execute subcommand (eg 'yarn <cmd> ...')
|
|
|
|
set -e
|
|
|
|
export PATH="./out/extracted/node/bin:$PATH"
|
|
./out/extracted/node/bin/yarn $*
|
|
./node_modules/.bin/license-checker-rseidelsohn --production --json \
|
|
--excludePackages anki --relativeLicensePath \
|
|
--relativeModulePath > ts/licenses.json
|