Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Abort on errors #17

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build_all_packs.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e

schemes=("as" "bn" "gu" "hi" "kn" "ml" "ml-inscript" "mr" "ne" "or" "pa" "sa" "ta" "te")
for schemeID in ${schemes[@]}; do
for packDir in schemes/$schemeID/*/ ; do
Expand Down
2 changes: 2 additions & 0 deletions build_all_schemes.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e

schemes=("as" "bn" "gu" "hi" "kn" "ml" "ml-inscript" "mr" "ne" "or" "pa" "sa" "ta" "te")
for f in ${schemes[@]}; do
./build_scheme.sh $f
Expand Down
2 changes: 2 additions & 0 deletions build_scheme.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e

f=$1
vst=schemes/$f/$f.vst
./compile-scheme.rb -s schemes/$f/$f.scheme -o $vst
Expand Down
2 changes: 2 additions & 0 deletions build_source_with_lfs_zip.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
set -e

git lfs fetch
zip -r source-with-lfs.zip . -x '.git'
2 changes: 2 additions & 0 deletions build_zips.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e

cd schemes

schemes=("as" "bn" "gu" "hi" "kn" "ml" "ml-inscript" "mr" "ne" "or" "pa" "sa" "ta" "te")
Expand Down
2 changes: 2 additions & 0 deletions install_all_schemes.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e

SUDO=${SUDO:-sudo}
PREFIX=/usr/local

Expand Down
Loading