diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-20 14:35:28 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-20 14:35:28 +0200 |
commit | 357172f4409c74d7a2ac963290fc70c7ae10e3b1 (patch) | |
tree | 3c857e1803d9840734fe2af59c328793fb7455e6 /libbutl | |
parent | 53d459271375a3fafb80f26d11ab13b00f468ef9 (diff) |
Switch to bash build2 module
Diffstat (limited to 'libbutl')
-rw-r--r-- | libbutl/manifest-parser.bash | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libbutl/manifest-parser.bash b/libbutl/manifest-parser.bash index 5fa53ce..e726298 100644 --- a/libbutl/manifest-parser.bash +++ b/libbutl/manifest-parser.bash @@ -2,12 +2,12 @@ # copyright : Copyright (c) 2014-2018 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -function parse_manifest () +function butl_parse_manifest () { - printf ": 1\0" - printf "name: foo\0" - printf "version: 1.2.3\0" - printf "description: foo\nexecutable\0" - printf "depends: libfoo\0" - printf "depends: libbar\0" + printf ":1\0" + printf "name:foo\0" + printf "version:1.2.3\0" + printf "description:foo\nexecutable\0" + printf "depends:libfoo\0" + printf "depends:libbar\0" } |