New commits:
commit bef9fae0d2cebad41240f06362559108ded65e9d
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>
scripts/mkrelease.sh: split VERSION for sed
Running "0.27-0" via variable through sed caused errors. For some
reason, it didn't like the "-". Therefore, the version information was
split into two variables using cut, and then processed in sed as
$half1-$half2 instead.
diff --git a/scripts/mkrelease.sh b/scripts/mkrelease.sh
index 6f93247..1671c29 100755
--- a/scripts/mkrelease.sh
+++ b/scripts/mkrelease.sh
@@ -74,7 +74,9 @@ do
done
# Replace the GRIMOIRE_VERSION placeholder (currently only in isolinux.msg).
-sed -i "s/@GRIMOIRE_VERSION@/$GRIMOIRE_VER/" "$TARGET"/isolinux/isolinux.msg
+half1=$(echo $GRIMOIRE_VER | cut -d- -f1)
+half2=$(echo $GRIMOIRE_VER | cut -d- -f2)
+sed -i "s/@GRIMOIRE_VERSION@/${half1}-${half2}/"
"$TARGET"/isolinux/isolinux.msg
# Generate the release ISO. Currently we force KEEP and COMPRESSION.
if [[ -n $ISOCHOWN ]]
[SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (bef9fae0d2cebad41240f06362559108ded65e9d),
Justin Boffemmyer, 01/04/2009