1
0
mirror of https://github.com/owncloud/ocis.git synced 2025-04-18 23:44:07 +03:00

fix: fix syntax after switching to golang tx client

This commit is contained in:
Robert Kaussow 2022-12-20 09:50:41 +01:00
parent c3041f8cd7
commit 9dc6612e95
No known key found for this signature in database
GPG Key ID: 4E692A2EAECC03C0

View File

@ -16,11 +16,11 @@ LOCALE_FILES = $(shell find l10n/locale -name '*.po' 2> /dev/null)
.PHONY: l10n-push
l10n-push:
cd $(OUTPUT_DIR) && tx -d push -s --skip --no-interactive
cd $(OUTPUT_DIR) && tx push -s --skip
.PHONY: l10n-pull
l10n-pull:
cd $(OUTPUT_DIR) && tx -d pull -a --skip --minimum-perc=75
cd $(OUTPUT_DIR) && tx pull -a --skip --minimum-perc=75
.PHONY: l10n-clean
l10n-clean:
@ -46,5 +46,3 @@ $(TEMPLATE_FILE):
$(OUTPUT_DIR)/translations.json:
rm -rf $(OUTPUT_DIR)/translations.json
gettext-compile --output $(OUTPUT_DIR)/translations.json $(LOCALE_FILES);