Renamed all .gitignore to .keep

.gitignore's shouldn't be removed as they (might) serve a purpose for bundles
This commit is contained in:
bauen1 2017-12-02 10:24:50 +01:00
parent 58ccaa6ab1
commit fbf7cd37d8
No known key found for this signature in database
GPG Key ID: FF0AAF5E0812BA9C
9 changed files with 4 additions and 4 deletions

View File

@ -24,9 +24,9 @@ cp -r ../minimal_rootfs/* rootfs
cd rootfs
# Delete the '.gitignore' files which we use in order to keep track of otherwise
# Delete the '.keep' files which we use in order to keep track of otherwise
# empty folders.
find * -type f -name '.gitignore' -exec rm {} +
find * -type f -name '.keep' -exec rm {} +
# Remove 'linuxrc' which is used when we boot in 'RAM disk' mode.
rm -f linuxrc

View File

@ -22,9 +22,9 @@ cp -r $MAIN_SRC_DIR/minimal_config $DEST_DIR/usr/src
cd $DEST_DIR/usr/src
# Delete the '.gitignore' files which we use in order to keep track of otherwise
# Delete the '.keep' files which we use in order to keep track of otherwise
# empty folders.
find * -type f -name '.gitignore' -exec rm {} +
find * -type f -name '.keep' -exec rm {} +
# With '--remove-destination' all possibly existing soft links in
# '$OVERLAY_ROOTFS' will be overwritten correctly.