Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (66ea490b4079f5b77a17d0faf089224aee5daef9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (66ea490b4079f5b77a17d0faf089224aee5daef9)
  • Date: Mon, 8 Sep 2008 13:59:40 -0500

GIT changes to master sorcery by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

ChangeLog | 1 +
var/lib/sorcery/modules/libqueue | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 66ea490b4079f5b77a17d0faf089224aee5daef9
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

libqueue: fixed a quoting problem in update_install_queue_sub

diff --git a/ChangeLog b/ChangeLog
index 5103a8b..92ecb79 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
to not conflict with the new binar... err script
* cast: don't resurrect the spell if it needs an update
added some more debug statements for the summary
+ * libqueue: fixed a quoting problem in update_install_queue_sub

2008-09-06 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* libmisc: made log_failure_reason idempotent and added an optional
arg
diff --git a/var/lib/sorcery/modules/libqueue
b/var/lib/sorcery/modules/libqueue
index 3cce748..73080c8 100755
--- a/var/lib/sorcery/modules/libqueue
+++ b/var/lib/sorcery/modules/libqueue
@@ -295,7 +295,7 @@ function update_install_queue_sub() {

if [[ $type == single ]]; then
if grep -q "^$spell " "$tmp_queue"; then
- sed -i '/^$spell /!d' "$tmp_queue"
+ sed -i "/^$spell /!d" "$tmp_queue"
elif grep -q "^$spell$" "$recheck_queue"; then
update_install_queue_sub2 $spell
return $?



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (66ea490b4079f5b77a17d0faf089224aee5daef9), Jaka Kranjc, 09/08/2008

Archive powered by MHonArc 2.6.24.

Top of Page