mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
15 lines
244 B
Bash
Executable File
15 lines
244 B
Bash
Executable File
#!/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..."
|