diff options
author | Leah Rowe <leah@libreboot.org> | 2025-04-12 22:01:12 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-04-12 22:32:51 +0100 |
commit | 0c87fdf96adc0c072577992e312ba2342d39ecdd (patch) | |
tree | 18d62d59144b3d82cfab7670bc8a15276df97fd3 /include/git.sh | |
parent | 9eb8856b3c5c9df751399096f8f0d87c56bcb7e0 (diff) |
git.sh: clean up fetch_project()
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/git.sh')
-rw-r--r-- | include/git.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git.sh b/include/git.sh index 30f9729a..42b04010 100644 --- a/include/git.sh +++ b/include/git.sh @@ -34,8 +34,8 @@ fetch_project() clone_project for x in config/git/*; do - [ -d "$x" ] && nuke "${x##*/}" "src/${x##*/}" 2>/dev/null - done; return 0 + [ -d "$x" ] && nuke "${x##*/}" "src/${x##*/}" 2>/dev/null; : + done; : } clone_project() |