update-common: don't delete dotfiles

This commit is contained in:
Ștefan Talpalaru 2020-05-20 21:02:05 +02:00
parent 3512a8633b
commit 252af3e779
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ build-nim: | sanity-checks
ARCH_OVERRIDE=$(ARCH_OVERRIDE) \
"$(CURDIR)/$(BUILD_SYSTEM_DIR)/scripts/build_nim.sh" "$(NIM_DIR)" ../Nim-csources ../nimble "$(CI_CACHE)"
#- for each submodule, delete checked out files (that might prevent a fresh checkout)
#- for each submodule, delete checked out files (that might prevent a fresh checkout); skip dotfiles
#- in case of submodule URL changes, propagates that change in the parent repo's .git directory
#- initialises and updates the Git submodules
#- hard-resets the working copies of submodules
@ -52,7 +52,7 @@ build-nim: | sanity-checks
#- allows parallel building with the '+' prefix
#- rebuilds the Nim compiler if the corresponding submodule is updated
update-common: | sanity-checks
git submodule foreach --quiet 'git ls-files --exclude-standard --recurse-submodules -z | xargs -0 rm -rf'
git submodule foreach --quiet 'git ls-files --exclude-standard --recurse-submodules -z -- ":!:.*" | xargs -0 rm -rf'
git submodule update --init --recursive || true
# changing URLs in a submodule's submodule means we have to sync and update twice
git submodule sync --quiet --recursive