mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-22 04:17:20 +00:00

This ensures that if the master build gets cancelled when translations change, or if any other weird situation happens, we know the translations will be uploaded after the next build.
12 lines
249 B
Bash
Executable File
12 lines
249 B
Bash
Executable File
#!/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_base
|