1
0
mirror of https://github.com/lineageos4microg/docker-lineage-cicd synced 2024-11-09 10:09:56 +01:00

Fix #688 - remove vendor/* in cleanup

This commit is contained in:
Pete Fotheringham 2024-09-29 19:57:40 +01:00 committed by GitHub
parent 4ca808339c
commit 432574d535
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -81,6 +81,7 @@ do_cleanup() {
else else
cd "$source_dir" cd "$source_dir"
(set +eu ; mka "${jobs_arg[@]}" clean) &>> "$DEBUG_LOG" (set +eu ; mka "${jobs_arg[@]}" clean) &>> "$DEBUG_LOG"
rm -rf vendor/* || true
fi fi
fi fi
} }