Skip to Content.
Sympa Menu

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

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 (164155dd09ae33fbc36b381d52f07c6fe6710f6a)
  • Date: Thu, 20 Nov 2008 18:44:15 -0600

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

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

New commits:
commit 164155dd09ae33fbc36b381d52f07c6fe6710f6a
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

scripts/spellcaster.sh: forgot to strip globally

Forgot to make the sed parsing strip quotes globally, so it only
stripped the first quote it found.

diff --git a/scripts/spellcaster.sh b/scripts/spellcaster.sh
index 4f99a6f..23b06be 100755
--- a/scripts/spellcaster.sh
+++ b/scripts/spellcaster.sh
@@ -66,7 +66,7 @@ ospells="ospells.$TYPE"
# check to make sure that the chroot has sorcery set to do caches
if [[ -e "$TARGET"/etc/sorcery/local/config ]]
then
- CONFIG_ARCHIVE=$(grep 'ARCHIVE=' "$TARGET"/etc/sorcery/local/config |
cut -d = -f 2 | sed 's/"//')
+ CONFIG_ARCHIVE=$(grep 'ARCHIVE=' "$TARGET"/etc/sorcery/local/config |
cut -d = -f 2 | sed 's/"//g')
if [[ -n $CONFIG_ARCHIVE && $CONFIG_ARCHIVE != "on" ]]
then
echo "Error! TARGET sorcery configured to not archive!" >&2



  • [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (164155dd09ae33fbc36b381d52f07c6fe6710f6a), Justin Boffemmyer, 11/20/2008

Archive powered by MHonArc 2.6.24.

Top of Page