Altered string comparison test in tuxpaint-import.sh
This commit is contained in:
parent
9a49459003
commit
e789bd3dab
2 changed files with 7 additions and 3 deletions
|
|
@ -7,7 +7,7 @@ bill@newbreedsoftware.com
|
|||
http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
|
||||
2005.February.13 (0.9.15)
|
||||
2005.February.26 (0.9.15)
|
||||
|
||||
|
||||
* uncatagorized and messy:
|
||||
|
|
@ -193,6 +193,10 @@ http://www.newbreedsoftware.com/tuxpaint/
|
|||
* Delete thumbnails from ".thumbs" subdirectory.
|
||||
Marcin 'Shard' Konicki <shard at beosjournal.org>
|
||||
|
||||
* tuxpaint-import.sh now uses single brackets when testing for "--help".
|
||||
(Apparently, the "[[...]]" version didn't work some places.)
|
||||
Jeff Smith <whydoubt@yahoo.com>
|
||||
|
||||
* Compiling, porting and packaging updates:
|
||||
-----------------------------------------
|
||||
* BeOS code updates.
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
# bill@newbreedsoftware.com
|
||||
# http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
# September 21, 2002 - June 17, 2003
|
||||
# September 21, 2002 - February 26, 2005
|
||||
|
||||
|
||||
TMPDIR=/tmp
|
||||
|
|
@ -23,7 +23,7 @@ if [ $# -eq 0 ]; then
|
|||
exit
|
||||
fi
|
||||
|
||||
if [[ $1 == "--help" ]]; then
|
||||
if [ $1 = "--help" ]; then
|
||||
# --help, show usage:
|
||||
echo
|
||||
echo "tuxpaint-import"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue