Merge remote-tracking branch 'origin/main' into add-file-envs
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Simon 2025-12-03 14:29:04 +01:00
commit d1bab1288c
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2

View file

@ -86,6 +86,12 @@ clean:
rm -rf .elixir_ls
rm -rf _build
# Remove Git merge conflict markers from gettext files
remove-gettext-conflicts:
#!/usr/bin/env bash
set -euo pipefail
find priv/gettext -type f -exec sed -i '/^<<<<<<< HEAD$/d; /^=======$/d; /^>>>>>>>/d' {} \;
# Production environment commands
# ================================