Ticket #4063: installer.patch

File installer.patch, 772 bytes (added by idefix, 15 years ago)

Patch to fix the calling of Installers scripts

  • src/apps/installer/WorkerThread.cpp

     
    213213    BString command("/bin/sh ");
    214214    command += bootPath.Path();
    215215    command += "/InstallerInitScript ";
     216    command += "\"";
    216217    command += path.Path();
     218    command += "\"";
    217219    _SetStatusMessage("Starting Installation.");
    218220    system(command.String());
    219221}
     
    227229    BString command("/bin/sh ");
    228230    command += bootPath.Path();
    229231    command += "/InstallerFinishScript ";
     232    command += "\"";
    230233    command += path.Path();
     234    command += "\"";
    231235    _SetStatusMessage("Finishing Installation.");
    232236    system(command.String());
    233237}