17 lines
221 B
Bash
Executable File
17 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
proj=anki
|
|
|
|
if [ "$key" = "" ]; then
|
|
echo "key not defined"
|
|
exit 1
|
|
fi
|
|
|
|
./update-pot
|
|
|
|
curl \
|
|
-F "files[/anki.pot]=@anki.pot" \
|
|
https://api.crowdin.com/api/project/$proj/update-file?key=$key
|