diff options
Diffstat (limited to 'buildstream/data/projectconfig.yaml')
-rw-r--r-- | buildstream/data/projectconfig.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/buildstream/data/projectconfig.yaml b/buildstream/data/projectconfig.yaml index f2ac83397..7bbcf69e0 100644 --- a/buildstream/data/projectconfig.yaml +++ b/buildstream/data/projectconfig.yaml @@ -1,6 +1,19 @@ # Default BuildStream project configuration. +# General configuration defaults +# + +# Require format version 0 +format-version: 0 + +# Overlaps are just warnings +fail-on-overlap: False + +# Elements are found at the project root +element-path: . + + # Variable Configuration # variables: @@ -172,3 +185,12 @@ split-rules: %{datadir}/zoneinfo - | %{datadir}/zoneinfo/** + + +# Default behavior for `bst shell` +# +shell: + + # Command to run when `bst shell` does not provide a command + # + command: [ 'sh', '-i' ] |