summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_freebsd.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-07-16 16:52:59 +0200
committerHolger Levsen <holger@layer-acht.org>2015-07-16 16:52:59 +0200
commitfffb41b423aa10b67e38d08f302b768f1d2c6eba (patch)
tree3962cab9e65b85c69d5a9727005bde2b6e96df6d /bin/reproducible_freebsd.sh
parent29b017bb3e3904aca7f3c302ace6956f4d0083d3 (diff)
downloadjenkins.debian.net-fffb41b423aa10b67e38d08f302b768f1d2c6eba.tar.xz
reprdocuible freebsd: fix quoting
Diffstat (limited to 'bin/reproducible_freebsd.sh')
-rwxr-xr-xbin/reproducible_freebsd.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_freebsd.sh b/bin/reproducible_freebsd.sh
index ad7c0556..fd596ce0 100755
--- a/bin/reproducible_freebsd.sh
+++ b/bin/reproducible_freebsd.sh
@@ -50,10 +50,10 @@ echo "$(date -u) - Cloning the freebsd git repository (which is autosynced with
echo "============================================================================="
$RSSH git clone https://github.com/freebsd/freebsd.git $TMPBUILDDIR/freebsd
FREEBSD="$($RSSH 'cd $TMPBUILDDIR/freebsd ; git log -1')"
-FREEBSD_VERSION=$($RSSH 'cd $TMPBUILDDIR/freebsd ; git describe --always')
+FREEBSD_VERSION="$($RSSH 'cd $TMPBUILDDIR/freebsd ; git describe --always')"
echo "This is freebsd $FREEBSD_VERSION."
echo
-$RSSH 'cd $TMPBUILDDIR/freebsd ; git log -1'
+$RSSH "cd $TMPBUILDDIR/freebsd ; git log -1"
echo "so far so good, to be continued..."