diff options
Diffstat (limited to 'acid.yaml.example')
-rw-r--r-- | acid.yaml.example | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/acid.yaml.example b/acid.yaml.example index 499366e..50cf0ba 100644 --- a/acid.yaml.example +++ b/acid.yaml.example @@ -61,7 +61,12 @@ projects: # Project build script. build: | echo Computing line count... - find . -not -path '*/.*' -type f -print0 | xargs -0 cat | wc -l + find . -not -path '*/.*' -type f -print0 | xargs -0 cat | wc -l \ + | tee count + + # Project deployment script. + deploy: | + # TODO: I have to figure this all out yet. # Time limit in time.ParseDuration format. # The default of one hour should suffice. |