citadel.nodes.script module

class citadel.nodes.script.Script(yml, path)[source]
Synopsis:Wrapper for basic shell script lines.
Requirements:None
Platform:Any

Usage

1
2
3
build:
  script:
    - mvn clean install

The lines within the module should all be under the form a list in yaml. These lines will get directly translated as shell script lines. The above example would become:

1
mvn clean install

This module is mainly a fallback for the user to be used whenever additional functionality is required and it hasn’t be (or won’t be) implemented.