1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00

Fix string

This commit is contained in:
Sven Merk 2019-03-26 17:05:12 +01:00
parent 8725f28ed6
commit 9184102295

View File

@ -331,11 +331,11 @@ steps:
stashContent:
- 'buildDescriptor'
- 'opensourceConfiguration'
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
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
sbt:
buildDescriptorFile: './build.sbt'
dockerImage: 'hseeberger/scala-sbt:8u181_2.12.8_1.2.8'