mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +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:
parent
1dd22582da
commit
8a5941e294
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ do_dev() {
|
||||||
pushd "$git_repo"
|
pushd "$git_repo"
|
||||||
if [ ! -d "$git_repo/.git" ]; then
|
if [ ! -d "$git_repo/.git" ]; then
|
||||||
git init .
|
git init .
|
||||||
git add .
|
git add --all --force
|
||||||
git commit -a -m 'Initial import'
|
git commit -a -m 'Initial import'
|
||||||
fi
|
fi
|
||||||
# Make it allow pushes from other local checkouts
|
# Make it allow pushes from other local checkouts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue