diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-18 01:11:24 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-18 01:11:24 +0200 |
commit | eaadb45bef5d3c11f98a14e7ef71246a2c2eae9d (patch) | |
tree | 06319b8cd32e3570eb84480eb87ed1218cf6b362 /bin | |
parent | ad33c7c69f559c0a7cd4d5c93900e6558b3c6760 (diff) | |
download | jenkins.debian.net-eaadb45bef5d3c11f98a14e7ef71246a2c2eae9d.tar.xz |
reproducible freebsd: escape correctly
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_freebsd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_freebsd.sh b/bin/reproducible_freebsd.sh index fd596ce0..b8d0e3fa 100755 --- a/bin/reproducible_freebsd.sh +++ b/bin/reproducible_freebsd.sh @@ -49,8 +49,8 @@ echo "========================================================================== echo "$(date -u) - Cloning the freebsd git repository (which is autosynced with their CVS repository)" 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="$($RSSH \"cd $TMPBUILDDIR/freebsd ; git log -1\")" +FREEBSD_VERSION="$($RSSH \"cd $TMPBUILDDIR/freebsd ; git describe --always\")" echo "This is freebsd $FREEBSD_VERSION." echo $RSSH "cd $TMPBUILDDIR/freebsd ; git log -1" |