Skip to content
Snippets Groups Projects
Commit 2a74e183 authored by rswindell's avatar rswindell
Browse files

Exclude *output.txt from sbbs_src.tgz (archive).

parent 7f9f389e
No related branches found
No related tags found
No related merge requests found
......@@ -25,10 +25,10 @@ var build_output = "build_output.txt";
if(platform=="win32") {
archive="sbbs_src.zip";
archive_cmd="pkzip25 -add -dir -excl=*output.txt " + archive;
archive_cmd="pkzip25 -exclude=*output.txt -add -dir " + archive;
} else {
archive="sbbs_src.tgz";
archive_cmd="tar -czvf " + archive + " *";
archive_cmd="tar --exclude=*output.txt -czvf " + archive + " *";
}
var builds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment