Yokemate of Keyboards
Posts: 2096 from 2003/2/24
From: po-RNO
Couple quick notes:
1) Tried with Feedback 11 installer: installer points to a .zip file, which doesn't work. It should be pointing to .lha file
2) This line produces an extra quotation mark at the end of the output line:
Code:
echo "Feedback 11 has just been installed to$dest
I would replace it with this for a cleaner solution:
Code:
echo "Feedback 11 has just been installed to " noline
echo $dest
3) These lines won't work, because if you click No in the requester it gives you 0, not 2.
Code:
if $start eq "2"
if $install eq "2"
So do this if you want it to close the window with No:
Code:
if $start eq "0"
if $install eq "0"
4) You could also be using Else there.. maybe it would be more elegant :) Like this:
Code:
if $start eq "1"
cd $dest
open void-FB11/
run void-FB11/void-fb11.exe
else
endcli
endif
Unless you plan to add more options there later...