From 2f0e16897f5af2c21b48b2009ac5fec9b713b588 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Tue, 11 Apr 2017 14:56:47 +0530 Subject: Fix appc deployment build failure basic unix command such as bash, find are hard coded with complete path which causes build failure. As these commands are always available in system path, the hard-coded path is removed to pass the build Change-Id: I37d1a112dfce811c1074bb7f3af2865b3d221381 Signed-off-by: Kanagaraj Manickam --- installation/appc/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installation/appc/pom.xml b/installation/appc/pom.xml index 130a093..4df9516 100644 --- a/installation/appc/pom.xml +++ b/installation/appc/pom.xml @@ -148,7 +148,7 @@ exec - /bin/bash + bash ${appc.version} ${project.version} @@ -168,7 +168,7 @@ exec - /usr/bin/find + find ${basedir}/target/docker-stage/opt/openecomp/appc -name @@ -324,7 +324,7 @@ exec - /bin/bash + bash ${appc.version} ${project.version} -- cgit 1.2.3-korg