Skip to content

Commit 510eb7d

Browse files
committed
Merge pull request #4196 from mboersma/fix-mesos-boot
fix(mesos): quote properly in marathon build
2 parents 3a27d1a + 6c37013 commit 510eb7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mesos/build-marathon.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# fail on any command exiting non-zero
4-
#set -eo pipefail
4+
set -eo pipefail
55

66
if [[ -z $DOCKER_BUILD ]]; then
77
echo
@@ -21,7 +21,7 @@ ln -s "/opt/marathon-$MARATHON_VERSION" /app
2121
ln -s "/opt/marathon-$MARATHON_VERSION" /marathon
2222

2323
mkdir -p "/opt/marathon-$MARATHON_VERSION/target"
24-
ln -s "/marathon-assembly.jar /opt/marathon-$MARATHON_VERSION/target/marathon-assembly-$MARATHON_VERSION.jar"
24+
ln -s "/marathon-assembly.jar" "/opt/marathon-$MARATHON_VERSION/target/marathon-assembly-$MARATHON_VERSION.jar"
2525

2626
apt-get autoremove -y --purge && \
2727
apt-get clean -y && \

0 commit comments

Comments
 (0)