(No Version Change)

Changed B_TESTING_FLAG to B_TESTING_1 to cover future cases where we run multiple testing option
flags. These last changes are all for future development, none are related to currently active stuff.
This commit is contained in:
inxi-svn 2008-11-13 02:40:01 +00:00
parent 0b75156ce9
commit fbffdcd27d

6
inxi
View file

@ -57,7 +57,7 @@
######################################################################## ########################################################################
#### TESTING FLAGS #### TESTING FLAGS
#### inxi supports advanced testing triggers to do various things, using -! <arg> #### inxi supports advanced testing triggers to do various things, using -! <arg>
#### -! 1 - triggers default B_TESTING_FLAG='true' to trigger some test or other #### -! 1 - triggers default B_TESTING_1='true' to trigger some test or other
#### -! 2 - triggers an update from the primary dev download server instead of svn #### -! 2 - triggers an update from the primary dev download server instead of svn
#### -! 3 - triggers an update from svn branch one - if present, of course #### -! 3 - triggers an update from svn branch one - if present, of course
#### -! 4 - triggers an update from svn branch two - if present, of course #### -! 4 - triggers an update from svn branch two - if present, of course
@ -119,7 +119,7 @@ B_SHOW_PARTITIONS='false'
B_SHOW_SHORT_OUTPUT='false' B_SHOW_SHORT_OUTPUT='false'
B_SHOW_SYSTEM='false' B_SHOW_SYSTEM='false'
# triggers various debugging and new option testing # triggers various debugging and new option testing
B_TESTING_FLAG='false' B_TESTING_1='false'
# Test for X running # Test for X running
B_X_RUNNING='false' B_X_RUNNING='false'
if [[ -n $DISPLAY ]];then if [[ -n $DISPLAY ]];then
@ -593,7 +593,7 @@ get_parameters()
;; ;;
!) # test for various supported methods !) # test for various supported methods
case $OPTARG in case $OPTARG in
1) B_TESTING_FLAG='true' 1) B_TESTING_1='true'
;; ;;
2) script_self_updater "$SCRIPT_DOWNLOAD_DEV" 'dev server' 2) script_self_updater "$SCRIPT_DOWNLOAD_DEV" 'dev server'
;; ;;