home *** CD-ROM | disk | FTP | other *** search
- .K ""
- echo "This script will install arp.library and req.library, after checking"
- echo "to see if you already have them. If so, it will check the version"
- echo "numbers of the installed one, and the one in this distribution, and"
- echo "give you the option of installing the one found here."
- echo ""
-
- if not EXISTS libs:req.library
- echo "No existing library, installing libs:req.library..."
- copy libs/req.library libs:req.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:req.library
- version libs/req.library
- echo ""
- ask "Do you wish to overwrite libs:req.library?"
- if WARN
- echo "Updating libs:req.library..."
- copy libs/req.library libs:req.library
- endif
- endif
-
- if not EXISTS libs:arp.library
- echo "No existing library, installing libs:arp.library..."
- copy libs/arp.library libs:arp.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:arp.library
- version libs/arp.library
- echo ""
- ask "Do you wish to overwrite libs:arp.library?"
- if WARN
- echo "Updating libs:arp.library..."
- copy libs/arp.library libs:arp.library
- endif
- endif
-
- echo "All Done. Click close gadget to get rid of window."
- endcli
-