From 4a73539ba9c844c068a9458e50f595db01f4b374 Mon Sep 17 00:00:00 2001 From: tateisu Date: Sun, 2 Aug 2020 13:56:38 +0900 Subject: [PATCH] update checkMissingTranslation.pl --- .idea/misc.xml | 2 +- checkMissingTranslation.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 3f62b3fa..c91ec4cc 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -44,7 +44,7 @@ - + diff --git a/checkMissingTranslation.pl b/checkMissingTranslation.pl index 26ef94ee..40f111e3 100644 --- a/checkMissingTranslation.pl +++ b/checkMissingTranslation.pl @@ -147,7 +147,7 @@ $hasError and die "please fix error(s).\n"; # Weblateの未マージのブランチがあるか調べる system qq(git fetch weblate -q); -my @list = `git branch --no-merged`; +my @list = `git branch -r --no-merged`; for(@list){ s/[\x0d\x0a]+//; print "# Unmerged branch: $_\n";