Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] BZR Change 14 to test sorcery by Andrew Stitt <astitt@sourcemage.org>

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: bzr AT mail.sourcemage.org
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] BZR Change 14 to test sorcery by Andrew Stitt <astitt AT sourcemage.org>
  • Date: Fri, 21 Apr 2006 10:45:03 -0500

------------------------------------------------------------
revno: 14
committer: Andrew Stitt <astitt AT sourcemage.org>
branch nick: test
timestamp: Wed 2006-04-12 09:37:03 -0700
message:
fix bug 10682

=== modified file 'ChangeLog'
--- ChangeLog
+++ ChangeLog
@@ -1,6 +1,7 @@
2006-04-12 Andrew Stitt <astitt AT sourcemage.org>
* gaze: fix bug 10144, fix viewing of install queue, patch from
Jaka Kranjc
+ * libdispel: print message if dispel fails, bug 10682

2006-04-08 Andrew Stitt <astitt AT sourcemage.org>
* libdepends: add default_* functions for dependency resolution

=== modified file 'var/lib/sorcery/modules/libdispel'
--- var/lib/sorcery/modules/libdispel
+++ var/lib/sorcery/modules/libdispel
@@ -350,6 +350,14 @@
activity_log "dispel" "$SPELL" "$VERSION" "success"
) &&
reap_depends
+ local rc=$?
+ if [[ "$rc" != 0 ]] ; then
+ message "${PROBLEM_COLOR}Dispel of${DEFAULT_COLOR}" \
+ "${SPELL_COLOR}$SPELL${DEFAULT_COLOR}" \
+ "${PROBLEM_COLOR}failed!${DEFAULT_COLOR}"
+ return $rc
+ fi
+ return 0
}

#---------------------------------------------------------------------




  • [SM-Commit] BZR Change 14 to test sorcery by Andrew Stitt <astitt AT sourcemage.org>, bzr, 04/21/2006

Archive powered by MHonArc 2.6.24.

Top of Page