Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (1b2cb6bb783c210460113be8bc2d266813dbc744)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (1b2cb6bb783c210460113be8bc2d266813dbc744)
  • Date: Sun, 23 Nov 2008 13:38:01 -0600

GIT changes to test cauldron by Justin Boffemmyer <flux AT sourcemage.org>:

scripts/mkrelease.sh | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1b2cb6bb783c210460113be8bc2d266813dbc744
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

scripts/mkrelease.sh: wrong grep option, q->l

Had grep -q, when it should have been -l. Now it will print the
filenames that match, instead of printing nothing at all and only
exiting 0 or 1. Thanks again to Jaka for spotting this.

diff --git a/scripts/mkrelease.sh b/scripts/mkrelease.sh
index a8c6658..c47975a 100755
--- a/scripts/mkrelease.sh
+++ b/scripts/mkrelease.sh
@@ -62,7 +62,7 @@ GRIMOIRE_VER=$(<
"$TARGET"/var/lib/sorcery/codex/stable/VERSION)

# Replace all ISO_VERSION placeholders with the ISO version passed on the
# commandline.
-for file in $(grep -qr '@ISO_VERSION@'
$TARGET/{etc,isolinux,usr/share/doc/smgl.install}/*)
+for file in $(grep -lr '@ISO_VERSION@'
$TARGET/{etc,isolinux,usr/share/doc/smgl.install}/*)
do
sed -i "s/@ISO_VERSION@/$VERSION/" "$file"
done



  • [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (1b2cb6bb783c210460113be8bc2d266813dbc744), Justin Boffemmyer, 11/23/2008

Archive powered by MHonArc 2.6.24.

Top of Page