mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00

:version currently fills the command line with the version number in order to display it to the user (hacky) and copies it to the clipboard.
15 lines
217 B
Bash
Executable file
15 lines
217 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PATH=$(npm bin):"$PATH"
|
|
export PATH
|
|
|
|
mkdir -p generated/static
|
|
scripts/excmds_macros.py
|
|
scripts/newtab.md.sh
|
|
scripts/make_docs.sh &
|
|
|
|
(webpack --display errors-only && scripts/git_version.sh)&
|
|
|
|
wait
|