diff options
author | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-09-25 13:23:50 +0200 |
---|---|---|
committer | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-09-25 13:23:50 +0200 |
commit | cb6a9ada39a945a7ddd2af35031b1c853a923540 (patch) | |
tree | bc32eeab2223b7e893f4515a3ec09026a613b70e /Makefile | |
parent | 9ee70fb18dcf445d7b4e1690e0999bd0736ef5ba (diff) |
sdauth.sciencedirect.com added
SWAMIDOPS-6957
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ tidy: commit: tidy test @git diff --color - @echo ; echo -n "Run 'git commit -a'? [Y/n/s] " ; read x ; case $$x in "Y"|"y"|"") git commit -a ;; s) ;; *) exit 1 ;; esac + @echo ; echo -n "Run 'git commit -a'? [Y/n/skip] " ; read x ; case $$x in "Y"|"y"|"") git commit -a ;; s|skip) ;; *) exit 1 ;; esac @git status -u @echo "Checking for not committed files in swamid-2.0/" ; if git status --porcelain --ignored | awk '{print $$2}' | grep "^swamid-2.0/" | sed 's/^/ /' | grep . ; then echo "Not committed files in swamid-2.0/, aborting" ; exit 1 ; fi @echo ; echo -n "Run 'git push'? [Y/n] " ; read x ; case $$x in "Y"|"y"|"") ;; *) exit 1 ;; esac |