diff --git a/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt b/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt
index 2beeabaa2910ea8dc5197bad798e57f4f3b2dbda..7516f5065e67e21e18c24d240722162b7ad03e47 100644
--- a/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt
+++ b/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt
@@ -1,2 +1,2 @@
 compiler.cpp.extra_flags=-DHAS_AUTOMATIC_VERSIONING
-recipe.hooks.prebuild.pattern=/usr/local/bin/generate_version_header_for_marlin {build.source.path} {build.path}/_Version.h
+recipe.hooks.prebuild.pattern=/usr/local/bin/generate_version_header_for_marlin "{build.source.path}" "{build.path}/_Version.h"
diff --git a/LinuxAddons/bin/generate_version_header_for_marlin b/LinuxAddons/bin/generate_version_header_for_marlin
index baee86cfbf6745099b1f62d08a5f37f98bae9b41..1a864f5fb3ee424b4b7053e65541d52cedd0890d 100755
--- a/LinuxAddons/bin/generate_version_header_for_marlin
+++ b/LinuxAddons/bin/generate_version_header_for_marlin
@@ -1,18 +1,18 @@
 #!/usr/bin/env bash
 # generate_version_header_for_marlin
 
-DIR=$1 export DIR
-OUTFILE=$2 export OUTFILE
-echo "/* This file is automatically generated by an Arduino hook" >$OUTFILE
-echo " * Do not manually edit it" >>$OUTFILE
-echo " * It does not get committed to the repository" >>$OUTFILE
-echo " */" >>$OUTFILE
-echo "" >>$OUTFILE
+DIR="$1" export DIR
+OUTFILE="$2" export OUTFILE
+echo "/* This file is automatically generated by an Arduino hook" >"$OUTFILE"
+echo " * Do not manually edit it" >>"$OUTFILE"
+echo " * It does not get committed to the repository" >>"$OUTFILE"
+echo " */" >>"$OUTFILE"
+echo "" >>"$OUTFILE"
 
-echo "#define BUILD_UNIX_DATETIME" `date +%s` >>$OUTFILE
-echo "#define STRING_DISTRIBUTION_DATE" `date '+"%Y-%m-%d %H:%M"'` >>$OUTFILE
+echo "#define BUILD_UNIX_DATETIME" `date +%s` >>"$OUTFILE"
+echo "#define STRING_DISTRIBUTION_DATE" `date '+"%Y-%m-%d %H:%M"'` >>"$OUTFILE"
 ( set +e
-  cd $DIR
+  cd "$DIR"
   BRANCH=`git symbolic-ref --short HEAD`
   if [ "x$BRANCH" == "xHEAD" ] ; then
     BRANCH=""
@@ -23,13 +23,13 @@ echo "#define STRING_DISTRIBUTION_DATE" `date '+"%Y-%m-%d %H:%M"'` >>$OUTFILE
   fi
   VERSION=`git describe --tags --first-parent 2>/dev/null` 
   if [ "x$VERSION" != "x" ] ; then
-    echo "#define BUILD_VERSION \"$VERSION\"" | sed "s/-/$BRANCH-/" >>$OUTFILE
+    echo "#define BUILD_VERSION \"$VERSION\"" | sed "s/-/$BRANCH-/" >>"$OUTFILE"
   fi
   URL=`git config --local --get remote.origin.url | sed "sx.*github.com:xhttps://github.com/x" | sed "sx\.gitx/x"`
   if [ "x$URL" != "x" ] ; then
-    echo "#define SOURCE_CODE_URL  \""$URL"\"" >>$OUTFILE
-    echo "// Deprecated URL definition" >>$OUTFILE
-    echo "#define FIRMWARE_URL  \""$URL"\"" >>$OUTFILE
+    echo "#define SOURCE_CODE_URL  \""$URL"\"" >>"$OUTFILE"
+    echo "// Deprecated URL definition" >>"$OUTFILE"
+    echo "#define FIRMWARE_URL  \""$URL"\"" >>"$OUTFILE"
   fi
   
 )