diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-22 01:20:09 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-22 01:20:09 +0100 |
commit | 744c2f6bab45358af5bf047ffabb9669ba0e2b6b (patch) | |
tree | 4e5a08c1c9d2b19093220e9b2a74bc04c2cf6a6e /functions | |
parent | 627de6d41e822391eec2d5ccd101725595317300 (diff) | |
download | vyos-live-build-744c2f6bab45358af5bf047ffabb9669ba0e2b6b.tar.gz vyos-live-build-744c2f6bab45358af5bf047ffabb9669ba0e2b6b.zip |
Print a friendlier message if debootstrap or cdebootstrap cannot be found.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/defaults.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 027d13739..591eb07d2 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -96,7 +96,8 @@ Set_defaults () then LH_BOOTSTRAP="cdebootstrap" else - echo "E: Can't process file /usr/sbin/debootstrap or /usr/bin/cdebootstrap (FIXME)" + echo "E: Cannot find /usr/sbin/debootstrap or /usr/bin/cdebootstrap. Please install" + echo "E: debootstrap or cdebootstrap, or specify an alternative bootstrapping utility." exit 1 fi fi |