1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00

Fix quoting

This commit is contained in:
Sven Merk 2019-03-26 17:16:44 +01:00
parent e5420b1e8a
commit 8adf183395

View File

@ -334,8 +334,8 @@ steps:
additionalInstallCommand: >-
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
&& mkdir -p /go/src/${config.whitesource.projectName}
&& ln -s $(pwd) $GOPATH/${config.whitesource.projectName}
&& cd $GOPATH/src/${config.whitesource.projectName} && dep ensure
&& ln -s \$(pwd) \$GOPATH/${config.whitesource.projectName}
&& cd \$GOPATH/src/${config.whitesource.projectName} && dep ensure
sbt:
buildDescriptorFile: './build.sbt'
dockerImage: 'hseeberger/scala-sbt:8u181_2.12.8_1.2.8'