From 9dc6612e956e2c720764c3fc925b2adce6667a46 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 20 Dec 2022 09:50:41 +0100 Subject: [PATCH] fix: fix syntax after switching to golang tx client --- .make/l10n.mk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.make/l10n.mk b/.make/l10n.mk index 7962af838f..f78556903c 100644 --- a/.make/l10n.mk +++ b/.make/l10n.mk @@ -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); - -