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/binary-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/binary-includes')
-rwxr-xr-x | components/binary-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/binary-includes b/components/binary-includes index dfac8c760..bdf238ff8 100755 --- a/components/binary-includes +++ b/components/binary-includes @@ -75,7 +75,7 @@ def main(): # includes if not glob.glob('config/includes/*') and not glob.glob('config/includes/.*') and not glob.glob('config/includes.binary/*') and not glob.glob('config/includes.binary/.*'): if verbose: - print ('I: no binary includes found at config/includes.binary - nothing to do') + print ('I: no binary includes found at config/includes{,.binary} - nothing to do') sys.exit(0) |