Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tools/update-dmd-rewrite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fi
# extract a subset of the dmd monorepo (druntime source + tests + Makefiles, dmd source + tests + osmodel.mak)
git filter-repo --force \
--path druntime/src --path druntime/test --path druntime/Makefile --path-glob 'druntime/*.mak' \
--path compiler/src/dmd --path compiler/test --path compiler/src/osmodel.mak \
--path compiler/src/dmd --path compiler/include/dmd --path compiler/test --path compiler/src/osmodel.mak \
--path src --path test # required to keep git history before upstream druntime-merge (and associated directory movals)
# remove unused files
git filter-repo --invert-paths \
Expand Down Expand Up @@ -73,6 +73,7 @@ git filter-repo \
`# move dirs/files` \
--path-rename druntime/:runtime/druntime/ \
--path-rename compiler/src/dmd/:dmd/ \
--path-rename compiler/include/dmd/:dmd/ \
--path-rename compiler/test/:tests/dmd/ \
--path-rename compiler/src/osmodel.mak:dmd/osmodel.mak \
`# prefix tags` \
Expand Down
Loading