From 74a67f6746a6f1583b9cc695259b4fa587cb1cee Mon Sep 17 00:00:00 2001 From: perry Date: Mon, 13 Apr 2015 16:32:51 -0500 Subject: [PATCH] scripts(release): grab tags when cloning project for a release I'm not sure this will work or not, next release will be a test --- scripts/clone/clone.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/clone/clone.sh b/scripts/clone/clone.sh index 5eeef4f0243..87d15e3ec8e 100755 --- a/scripts/clone/clone.sh +++ b/scripts/clone/clone.sh @@ -18,6 +18,8 @@ function run { ARGS="$ARGS --depth=$DEPTH" fi git clone https://driftyco:$GH_TOKEN@github.com/$REPOSITORY $DIRECTORY $ARGS + git fetch + git fetch --tags } source $(dirname $0)/../utils.inc