
; This Shell script sets the default values in the Configure Installer script.
; Commodore's Installer compiles it's script before it executes it
; and no further Installer LISP code can be evaluated at run-time.
; This is why the Configure Installer script cannot read the current default values
; on it's own before it begins asking you for the pathnames.

echo "Reading current default values ..."
rx Configure.rexx READ SCRIPT MirrorManager.rexx > T:SetConfigureDefaultsTemp.<$$>

echo "Setting default values in Configure script ..."
rx Configure.rexx SCRIPT Configure WITH T:SetConfigureDefaultsTemp.<$$> DELIMITER ";@" TERMINATOR ";end"

delete quiet T:SetConfigureDefaultsTemp.<$$>

;run >nil: installer SCRIPT Configure APPNAME MirrorManager.rexx MINUSER EXPERT DEFUSER EXPERT
echo "done."
