Skip to content

Commit

Permalink
fix --skip-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowak committed Aug 26, 2015
1 parent 95ace32 commit 7b0ed9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_dmd_release/build_all.d
Expand Up @@ -432,12 +432,12 @@ int main(string[] args)
{
auto toCopy = ["old-dmd", "clones", osS~"/extraBins"].addPrefix(workDir~"/").join(" ");
scp(toCopy, "default:");
if (os != OS.linux) scp(workDir~"/docs", "default:");
if (os != OS.linux && !skipDocs) scp(workDir~"/docs", "default:");
// copy create_dmd_release.d and dependencies
scp("create_dmd_release.d common.d", "default:");

build(ver, isBranch, skipDocs);
if (os == OS.linux) scp("default:docs", workDir);
if (os == OS.linux && !skipDocs) scp("default:docs", workDir);
}
}
combineZips(ver);
Expand Down

0 comments on commit 7b0ed9c

Please sign in to comment.