Skip to content

Commit 214a07d

Browse files
committed
Exclude more files/directories for preinstall
The bs_worker code currently uses them and relies on preinstall not touching them.
1 parent 021a4df commit 214a07d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

init_buildsystem

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ preinstall_setup() {
227227
mkdir build-preinstall || cleanup_and_exit 1
228228
for i in * .* ; do
229229
case "$i" in
230-
.|..|.build|.init_b_cache|build-preinstall|proc|sys) continue ;;
230+
.|..|.build|.build.*|.build-srcdir|.init_b_cache|.pkgs|build-preinstall|proc|sys) continue ;;
231231
esac
232232
mv "./$i" build-preinstall || cleanup_and_exit 1
233233
done
@@ -238,7 +238,7 @@ preinstall_integrate() {
238238
cd "$BUILD_ROOT/build-preinstall" || cleanup_and_exit 1
239239
for i in * .* ; do
240240
case "$i" in
241-
.|..|.build|.init_b_cache|build-preinstall|proc|sys) continue ;;
241+
.|..|.build|.build.*|.build-srcdir|.init_b_cache|.pkgs|build-preinstall|proc|sys) continue ;;
242242
esac
243243
mv "./$i" .. || cleanup_and_exit 1
244244
done

0 commit comments

Comments
 (0)