mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
7 lines
127 B
Bash
Executable file
7 lines
127 B
Bash
Executable file
#!/bin/bash
|
|
# Add a dependency (eg 'yarn add ...') and update licenses.
|
|
|
|
set -e
|
|
|
|
bazel run yarn -- add $*
|
|
./update-licenses.sh
|