diff options
Diffstat (limited to 'libbutl/manifest-parser.bash.in')
-rw-r--r-- | libbutl/manifest-parser.bash.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbutl/manifest-parser.bash.in b/libbutl/manifest-parser.bash.in index e40791e..3ac2fc7 100644 --- a/libbutl/manifest-parser.bash.in +++ b/libbutl/manifest-parser.bash.in @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2014-2018 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -if [ "$butl_manifest_parser" = true ]; then +if [ "$butl_manifest_parser" ]; then return 0 else butl_manifest_parser=true @@ -10,7 +10,8 @@ fi @import libbutl/utility@ -# Parse the manifest from stdin writing the binary representation to stdout. +# Parse the manifest reading from stdin and writing the binary representation +# to stdout. # # Normally you would use the start/finish functions below. But if you don't # care about errors, the following would be the typical usage: |