OSDN Git Service

modified: Makefile v2.3.29p0215
authorTakuo Yasunaga <yasunaga@bio.kyutech.ac.jp>
Wed, 18 Nov 2015 12:38:25 +0000 (21:38 +0900)
committerTakuo Yasunaga <yasunaga@bio.kyutech.ac.jp>
Wed, 18 Nov 2015 12:38:25 +0000 (21:38 +0900)
Y -> Y|y

Makefile

index 8ad2f45..763227b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -262,9 +262,9 @@ git-push-with-check::
                SSS=`git tag | sort -k 2,2 -n -t p | tail -1`; \
                if [ ! -z "$$SSS" ]; then \
                        echo "$$SSS is Current Tags in $$ORIGINNAME."; \
-                       echo "Did Tag update? Y(: push) | N(or Otherwords : not push)"; \
+                       echo -n "Did Tag update? Y|y(: push) | N(or Otherwords : not push)"; \
                        read TTT; \
-                       if [ "$$TTT" = Y ]; then \
+                       if [ "$$TTT" = Y -o "$$TTT" = y ]; then \
                                git push $$ORIGINNAME master --tags; \
                        else \
                                echo "not push."; \