Changes between Version 3 and Version 4 of SoftWare/ProjectMeta


Ignore:
Timestamp:
Apr 27, 2018, 2:21:11 PM (6 years ago)
Author:
g7moreau
Comment:

Explication

Legend:

Unmodified
Added
Removed
Modified
  • SoftWare/ProjectMeta

    v3 v4  
    2323especially if there is a lot of data
    2424
    25 Here an example to append all the folder of kind {{{*.mproj*'}}} (Coriolis example for some open data)
     25Here an example to append all the folder of kind '{{{*.mproj*}}}' (Coriolis example for some open data)
    2626at the end of the {{{PROJECT-META.yml}}} file.
    2727{{{
    2828find . -name '*.mproj*' -a -type d | sed 's/^/    - /;' >> PROJECT-META.yml
    2929}}}
     30The {{{find}}} command only search the right folders under the current one (.)
     31and the {{{sed}}} command add 4 spaces and the dash at the beginning of each line
     32in order to respect the YAML format.
    3033
    3134== Repository ==