aboutsummaryrefslogtreecommitdiffstats
path: root/installation
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2017-04-11 14:56:47 +0530
committerKanagaraj Manickam <kanagaraj.manickam@huawei.com>2017-04-11 10:13:22 +0000
commit2f0e16897f5af2c21b48b2009ac5fec9b713b588 (patch)
tree75e51fac1d18a71a51fa4d52dbe42e8d4731d13c /installation
parent4d55ce831cbaf43c149e70a35abf28cf71452351 (diff)
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 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'installation')
-rw-r--r--installation/appc/pom.xml6
1 files 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 @@
<goal>exec</goal>
</goals>
<configuration>
- <executable>/bin/bash</executable>
+ <executable>bash</executable>
<environmentVariables>
<APPC_VERSION>${appc.version}</APPC_VERSION>
<APPC_OAM_VERSION>${project.version}</APPC_OAM_VERSION>
@@ -168,7 +168,7 @@
<goal>exec</goal>
</goals>
<configuration>
- <executable>/usr/bin/find</executable>
+ <executable>find</executable>
<arguments>
<argument>${basedir}/target/docker-stage/opt/openecomp/appc</argument>
<argument>-name</argument>
@@ -324,7 +324,7 @@
<goal>exec</goal>
</goals>
<configuration>
- <executable>/bin/bash</executable>
+ <executable>bash</executable>
<environmentVariables>
<APPC_VERSION>${appc.version}</APPC_VERSION>
<APPC_OAM_VERSION>${project.version}</APPC_OAM_VERSION>