lemmy/scripts/update_translations.sh
Charles Hall 4e5798852f
make shebangs posix compliant (#2974)
Previously, these scripts wouldn't work on exotic systems such as NixOS.

```
fd '\.sh$' -t f --exec sed -i 's@#!/bin/bash@#!/usr/bin/env bash@'
```
2023-06-08 15:38:26 -04:00

14 lines
229 B
Bash
Executable file

#!/usr/bin/env bash
set -e
pushd ../../lemmy-translations
git fetch weblate
git merge weblate/main
git push
popd
git submodule update --remote
git add ../crates/utils/translations
git commit -m"Updating translations."
git push