show queuefilename in dialog logs to match behavior of cli mode

This commit is contained in:
chess.griffin 2009-02-25 03:16:39 +00:00
parent c14c9d6359
commit 7262d5fa8b
2 changed files with 3 additions and 1 deletions

View File

@ -55,5 +55,6 @@ enhancements:
* Allow the user to specify what to do on errors once and for all with the * Allow the user to specify what to do on errors once and for all with the
'-e' command line switch. The user can now tell sbopkg to ignore any error '-e' command line switch. The user can now tell sbopkg to ignore any error
or to automatically stop on the first one. Thanks to Alan Hicks for or to automatically stop on the first one. Thanks to Alan Hicks for
suggesting this feature. suggesting this feature and thanks to Mauro Giachero for implementing both
the previous feature and this one.
+--------------------------+ +--------------------------+

View File

@ -1133,6 +1133,7 @@ load_user_queue () {
for ((i=0; i<${#USERQUEUE[*]}; i++)); do for ((i=0; i<${#USERQUEUE[*]}; i++)); do
FILE=$QUEUEDIR/${USERQUEUE[$i]//'"'/} FILE=$QUEUEDIR/${USERQUEUE[$i]//'"'/}
if [ -r $FILE ]; then if [ -r $FILE ]; then
CLIQUEUEFILE=$FILE
# this inhibits add_item_to_queue's msgbox for each added app # this inhibits add_item_to_queue's msgbox for each added app
touch $TMP/sbopkg_user_queue.lck touch $TMP/sbopkg_user_queue.lck
# Reading from $FILE... # Reading from $FILE...