mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 07:15:43 -06:00
10 lines
296 B
Bash
10 lines
296 B
Bash
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
__script_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
readonly __script_dir
|
|
|
|
cd "$__script_dir/../"
|
|
echo "Uploading source translation file..."
|
|
crowdin upload sources --identity=crowdin_credentials.yml --preserve-hierarchy
|
|
flutter packages pub get |