carbon-core-system

Integration repository for versioned configuration and software on Carbon
git clone https://ccx.te2000.cz/git/carbon-core-system
Log | Files | Refs | Submodules

commit 55e9a486df5fa6a7ac831b28ef95a14bf9d2ddcb
parent f624775bc571f7f12ba5a5519a4dac17b396bf03
Author: ccx <root@dorje.wpr.cz>
Date:   Mon, 29 Mar 2021 18:18:45 +0200

Tweak the clean script to exclude plain files.

Diffstat:
Mclean | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/clean b/clean @@ -2,6 +2,7 @@ set -x for sm in package package/*; do + if ! test -d "$sm"; then continue; fi git submodule update --force --recursive "$sm" ( cd "$sm" && git checkout --force && git clean -fx ) done