New commits:
commit c31ad36bcc34b28c4b8e1816806751e3995139bc
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
small bugfix
diff --git a/var/lib/quill/ChangeLog b/var/lib/quill/ChangeLog
index 95dc4bb..5481926 100644
--- a/var/lib/quill/ChangeLog
+++ b/var/lib/quill/ChangeLog
@@ -7,9 +7,10 @@
added utility function dir_check
don't reindex if overwriting in quill_final_put_in_grimoire
* libupdate: improved ask_and_copy_over and update_patchlevel
+ forgot to remove the exit in compute_spaces, added null check
* libfreshmeatxml: fallback on argument for spell name
* libdetails: quote the website too, some contain # and wouldn't show
whole
- * version: 0.1.15, third, internal 0.2 release candidate
+ * version: 0.2 final
2007-01-23 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* libhistory: added add_user_history_entries for adding arbitrary
entries
diff --git a/var/lib/quill/modules/libupdate b/var/lib/quill/modules/libupdate
index 6faafaf..f79a6e2 100644
--- a/var/lib/quill/modules/libupdate
+++ b/var/lib/quill/modules/libupdate
@@ -84,7 +84,7 @@ function update_patchlevel_sub()
function count_spaces()
{
local count spaces eq_col
- eq_col=$(awk -F '=' '{ print length($1); exit}' DETAILS | sort | uniq -c |
sort -n | sed -n '$ s,^\s*\S*\s,,p')
+ eq_col=$(awk -F '=' '{ if($1)print length($1) }' DETAILS | sort | uniq -c
| sort -n | sed -n '$ s,^\s*\S*\s,,p')
count=$(( $eq_col - ${#1} ))
for (( i=0 ; i<$count; i++ )) ; do
spaces="$spaces "
[SM-Commit] GIT changes to master quill by Jaka Kranjc (c31ad36bcc34b28c4b8e1816806751e3995139bc),
Jaka Kranjc, 01/26/2007