diff options
Diffstat (limited to 'share/scripts')
-rwxr-xr-x | share/scripts/debconf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index c6cc0ec..e8640fa 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -115,14 +115,14 @@ then exit 1 fi -if [ -x /usr/sbin/debootstrap ] -then - BOOTSTRAP="debootstrap" -elif [ -x /usr/bin/mmdebstrap ] +if [ -x /usr/bin/mmdebstrap ] then BOOTSTRAP="mmdebstrap" +elif [ -x /usr/sbin/debootstrap ] +then + BOOTSTRAP="debootstrap" else - echo "'${NAME}': /usr/sbin/debootstrap or /usr/bin/mmdebstrap - no such file." >&2 + echo "'${NAME}': /usr/bin/mmdebstrap or /usr/sbin/debootstrap - no such file." >&2 exit 1 fi |