home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / setup < prev    next >
Text File  |  1994-03-29  |  568b  |  25 lines

  1. .K ""
  2. echo "This script will add the :C and :Libs directories of this CD-ROM"
  3. echo "to your current C: and LIBS: assign paths, so that some programs"
  4. echo "and libraries can be found, without you having to copy them off"
  5. echo "the CD-ROM and onto your system disk."
  6. echo ""
  7.  
  8. FailAt 20
  9.  
  10. ask "Do you wish to continue? [y/n]"
  11. if not warn
  12.     skip NoInstall
  13. endif
  14.  
  15. assign C:    :C    add
  16. assign LIBS:    :Libs    add
  17.  
  18. echo "*nAll Done.  Click close gadget to get rid of window."
  19. endcli > nil:
  20.  
  21. lab NoInstall
  22. echo "*nCanceled.  Click close gadget to get rid of window."
  23. endcli > nil:
  24.  
  25.