@Mason
Nono! That's not the way to do it!
You have AISS in a script, right?
Add the following line first:
; $VER: AISS 3.2
Now you can do a
VERSION Sys:WBStartup/AISS
and get your version.
And this is the Amiga way to do it.
But then again, this only applies for the script. So, to technically update anything would require an update to the script.
ANd, here's a little script to test the version of SYS:WBStartup/AISS. Copy it and test with execute. Of course, add the line above to your script.
version SYS:WBStartup/AISS version 5
version SYS:WBStartup/AISS version 5 > NIL:
IF WARN THEN
echo "over version 5"
ELSE
echo "under or equals 5"
ENDIF
version SYS:WBStartup/AISS version 2 >NIL:
IF WARN THEN
echo "over version 2"
ELSE
echo "under or equals 2"
ENDIF
version SYS:WBStartup/AISS version 3 revision 2 > NIL:
IF WARN THEN
echo "over version 3.2"
ELSE
echo "under or equals to 3.2"
ENDIF
This can even test revisions! Love Amiga scripting!