Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/stable' into merge_stable
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Jan 1, 2024
2 parents 60b1b33 + efe3deb commit 7b0b3c8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions create_dmd_release/create_dmd_release.d
Original file line number Diff line number Diff line change
Expand Up @@ -292,14 +292,20 @@ void cleanAll(string branch)
changeDir(cloneDir~"/dmd");
run("git clean -f -x -d"); // remove all untracked/ignored files
run("git checkout ."); // undo local changes, e.g. VERSION
version (Windows)
run("git config core.fileMode false"); // ignore executable bit of files

info("Cleaning Phobos");
changeDir(cloneDir~"/phobos");
run("git clean -f -x -d");
version (Windows)
run("git config core.fileMode false");

info("Cleaning Tools");
changeDir(cloneDir~"/tools");
run("git clean -f -x -d");
version (Windows)
run("git config core.fileMode false");
}

void buildAll(string branch)
Expand Down

0 comments on commit 7b0b3c8

Please sign in to comment.