*** NOT PART OF BUILD ***

Copying the mozilla-installer shell script too as part of the delivered build.
This commit is contained in:
sgehani%netscape.com 2000-04-14 05:59:31 +00:00
parent 0f4e0ed7be
commit 40ad0f81fe

View File

@ -104,8 +104,10 @@ if ($aBuildWizard eq "buildwizard")
#// deliver wizard to staging area (mozilla/installer/stage)
copy("$WIZARD/mozilla-installer", $RAW);
copy("$WIZARD/mozilla-installer-bin", $RAW);
copy("$WIZARD/README", $RAW);
copy("$WIZARD/MPL-1.1.txt", $RAW);
chmod(0755, "$RAW/mozilla-installer"); #// ensure shell script is executable
spew("Completed delivering wizard");
@ -128,13 +130,14 @@ spew("Completed making .xpis");
#-------------------------------------------------------------------------
# Package stub and sea
#-------------------------------------------------------------------------
#// tar and gzip mozilla-installer, README, license, config.ini into stub
#// tar and gzip mozilla-installer, mozilla-installer-bin, README, license,
#// config.ini into stub
chdir($RAW);
system("tar cvf $STUB/$aStubName.tar mozilla-installer README config.ini MPL-1.1.txt");
system("tar cvf $STUB/$aStubName.tar mozilla-installer mozilla-installer-bin README config.ini MPL-1.1.txt");
system("gzip $STUB/$aStubName.tar");
#// tar and gzip mozilla-installer, README, license, config.ini, and .xpis
#// into sea
#// tar and gzip mozilla-installer, mozilla-installer-bin, README, license,
#// config.ini, and .xpis into sea
system("tar cvf $BLOB/$aBlobName.tar .");
system("gzip $BLOB/$aBlobName.tar");
chdir($_orig);