File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ $(TARGETS):
77
88run :
99make build
10- rm 16-bundle-manifest.bundle
10+ rm -f 16-bundle-manifest.bundle
1111rm -rf /tmp/bashful.*
1212./dist/bashful bundle example/16-bundle-manifest.yml
1313./16-bundle-manifest.bundle
@@ -33,6 +33,7 @@ examples: clean build
3333./dist/bashful run example/13-single-line.yml || true
3434# ./dist/bashful run example/14-sudo.yml
3535./dist/bashful run example/15-yaml-includes.yml
36+ ./dist/bashful bundle example/16-bundle-manifest.yml && ./16-bundle-manifest.bundle; rm -f 16-bundle-manifest.bundle
3637
3738clean :
3839rm -f dist/bashful build.log
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ config:
229229 # which character used to delimintate the task list
230230 bullet-char: "-"
231231
232- # hide all subtasks after section completion
232+ # hide all child tasks after task section completion
233233 collapse-on-completion: false
234234
235235 # change the colors of the vertical progress bar for a task in a particular state.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import (
1919
2020"github.com/howeyc/gopass"
2121color "github.com/mgutz/ansi"
22- // "github.com/mholt/archiver"
2322
2423"github.com/spf13/afero"
2524"github.com/urfave/cli"
@@ -176,7 +175,7 @@ ARCHIVE=$(awk '/^__BASHFUL_ARCHIVE__/ {print NR + 1; exit 0; }' $0)
176175tail -n+$ARCHIVE $0 | tar -xz -C $TMPDIR
177176
178177pushd $TMPDIR > /dev/null
179- ./bashful run {{.Runyaml}}
178+ ./bashful run {{.Runyaml}} $*
180179popd > /dev/null
181180rm -rf $TMPDIR
182181
You can’t perform that action at this time.
0 commit comments