diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-21 12:30:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-21 12:30:38 +0200 |
commit | 03ff256dc44228c9465cd2040593a72b2d084d1e (patch) | |
tree | 00a0ea59a21f49f4ffb9565f624c73a45d08826e /libbutl/manifest-parser.bash.in | |
parent | ed93f8450b92579dd639ae25361fa650613a5b7e (diff) |
Add manifest serializer module
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: |