diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-11-04 19:00:56 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-11-04 19:00:56 +0100 |
commit | 0495570394f7c04c598ed8affa1550d4ba1bd66d (patch) | |
tree | 1660c4c55a12f7baadb319690ccc3ad231924b49 /components/chroot-includes | |
parent | 4fa62f53fa66984487d753c0f599a5be013fa1b1 (diff) | |
download | vyos-live-build-0495570394f7c04c598ed8affa1550d4ba1bd66d.tar.gz vyos-live-build-0495570394f7c04c598ed8affa1550d4ba1bd66d.zip |
Correcting error message when no includes have been found in *-includes commands.
Diffstat (limited to 'components/chroot-includes')
-rwxr-xr-x | components/chroot-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/chroot-includes b/components/chroot-includes index ebf9fb552..9e73157e8 100755 --- a/components/chroot-includes +++ b/components/chroot-includes @@ -74,7 +74,7 @@ def main(): # includes if not glob.glob('config/includes/*') and not glob.glob('config/includes/.*') and not glob.glob('config/includes.chroot/*') and not glob.glob('config/includes.chroot/.*'): if verbose: - print ('I: no chroot includes found at config/includes.chroot - nothing to do') + print ('I: no chroot includes found at config/includes{,.chroot} - nothing to do') sys.exit(0) |