Skip to Content.
Sympa Menu

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

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 (7a90df0173991c62b7638024d6f6b6c987b675c3)
  • Date: Sun, 4 Jan 2009 17:31:26 -0600

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

iso/usr/share/smgl.install/smgl-enchant | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 7a90df0173991c62b7638024d6f6b6c987b675c3
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

smgl.install/smgl-enchant: fix sort, inc verbosity

Fixed the sort commands (they were somehow missing the final arguments,
causing sort to read STDIN instead of the files), and added some output
to make it more clear exactly what the script was doing for the
individual stages of the tablet processing.

diff --git a/iso/usr/share/smgl.install/smgl-enchant
b/iso/usr/share/smgl.install/smgl-enchant
index f728aa5..57384bd 100755
--- a/iso/usr/share/smgl.install/smgl-enchant
+++ b/iso/usr/share/smgl.install/smgl-enchant
@@ -123,10 +123,13 @@ find $tablet -maxdepth 1 -type d | sed 's#^.*/##' >
$TABLETS
for spell in $(</tmp/smgl.install/enchant)
do
spell=${spell##*/}
+ echo "Processing $spell tablet..."
generate_state "$spell"
done
-sort -u -o "$depends"
-sort -u -o "$packages"
+echo "Regenerating $depends"
+sort -u -o "$depends" "$depends"
+echo "Regenerating $packages"
+sort -u -o "$packages" "$packages"






  • [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (7a90df0173991c62b7638024d6f6b6c987b675c3), Justin Boffemmyer, 01/04/2009

Archive powered by MHonArc 2.6.24.

Top of Page