12 lines
244 B
Plaintext
12 lines
244 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Safe bash settings
|
||
|
# -e Exit on command fail
|
||
|
# -u Exit on unset variable
|
||
|
# -o pipefail Exit if piped command has error code
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
script/translations_upload
|