Files
ArchiSteamFarm/tools/crowdin-cli/archi_upload.sh

15 lines
244 B
Bash
Raw Normal View History

2018-07-20 01:37:27 +02:00
#!/bin/bash
set -eu
cd "$(dirname "$(readlink -f "$0")")"
cd ../..
cd wiki
git reset --hard
git clean -fd
git pull
cd ..
crowdin -b master --identity tools/crowdin-cli/crowdin_identity.yml upload sources
read -p "Press enter to continue..."