We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6ac29d commit 0647dfaCopy full SHA for 0647dfa
plugins/envsetup
@@ -322,14 +322,20 @@ do_build() {
322
_debootstrap=$(which debootstrap)
323
fi
324
325
+ if ! $DEBOOTSTRAP_DIR; then
326
+ DEBOOTSTRAP_DIR="$ROOT_DIR/core/debootstrap"
327
+ fi
328
+
329
if [ "$BUILD_PLATFORM" == "termux" ]; then
330
dpkg_depends_on debootstrap
331
_debootstrap="$(which debootstrap)"
332
FOREIGN=""
333
334
335
(
- $SUDO $_debootstrap \
336
+ # execute debootstrap with bash to skip changing file permission
337
+ # to executable
338
+ $SUDO bash $_debootstrap \
339
$FOREIGN \
340
--arch="$arch" \
341
--no-check-gpg \
0 commit comments