From e4150c287e9d17558612f18ee2f22dcb42119bc2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Sat, 4 Oct 2014 07:01:35 +0200 Subject: [PATCH] Check update script. --- update-check.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 update-check.sh diff --git a/update-check.sh b/update-check.sh new file mode 100755 index 0000000..0766979 --- /dev/null +++ b/update-check.sh @@ -0,0 +1,15 @@ +#! /bin/bash + +tag1=$1 +tag2=$2 + +if [ -z "$tag1" ]; then + echo "Usage: $0 TAG1 [TAG2]" + exit 1 +fi + +if [ -z "$tag2" ]; then + tag2=master +fi + +git diff $1 $2 -- Gemfile lib/authentication_strategies/bundles/Gemfile.* lib/backends/bundles/Gemfile.* -- 1.8.2.3