1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

Ports: Force-add all files when entering dev

This keeps us from accidentally excluding files that are listed in the
`.gitignore` but that are included in the tarball anyways.
This commit is contained in:
Tim Schumacher 2022-06-01 00:59:55 +02:00 committed by Linus Groh
parent 1dd22582da
commit 8a5941e294

View file

@ -727,7 +727,7 @@ do_dev() {
pushd "$git_repo"
if [ ! -d "$git_repo/.git" ]; then
git init .
git add .
git add --all --force
git commit -a -m 'Initial import'
fi
# Make it allow pushes from other local checkouts