From 23e017e88c039aabb13a84a6ad4cfdfc5d8a6b54 Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Thu, 21 Aug 2014 06:01:10 +0000
Subject: [PATCH] SSDM-279: remove unused flag in dependency report creation
 command

SVN: 32303
---
 openbis_all/source/bash/build/branch.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openbis_all/source/bash/build/branch.sh b/openbis_all/source/bash/build/branch.sh
index ee9511cb2b2..b51286a1dd2 100755
--- a/openbis_all/source/bash/build/branch.sh
+++ b/openbis_all/source/bash/build/branch.sh
@@ -93,7 +93,7 @@ done
 
 for project in $GRADLE_PROJECTS; do
 	cd tmp/$project;
-	./gradlew -Dopenbis.jenkins-build=true dependencyReport;
+	./gradlew dependencyReport;
 	cat targets/gradle/reports/project/dependencies.txt|egrep ^.---|grep \>|sort|uniq|awk '{print $2 ":" $4}'|awk -F: '{print "s/" $1 ":" $2 ":" $3 "/" $1 ":" $2 ":" $4 "/g"}' > sed_commands;
 	
 	for file in build.gradle javaproject.gradle gwtdev.gradle query-api.gradle proteomics-api.gradle screening-api.gradle admin-console.gradle clients.gradle; do
-- 
GitLab