Skip to content

Commit

Permalink
changed wording; allow bundle runner to accept arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
wagoodman committed Apr 9, 2018
1 parent 6d4bf7d commit e50f5fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $(TARGETS):

run:
make build
rm 16-bundle-manifest.bundle
rm -f 16-bundle-manifest.bundle
rm -rf /tmp/bashful.*
./dist/bashful bundle example/16-bundle-manifest.yml
./16-bundle-manifest.bundle
Expand All @@ -33,6 +33,7 @@ examples: clean build
./dist/bashful run example/13-single-line.yml || true
# ./dist/bashful run example/14-sudo.yml
./dist/bashful run example/15-yaml-includes.yml
./dist/bashful bundle example/16-bundle-manifest.yml && ./16-bundle-manifest.bundle; rm -f 16-bundle-manifest.bundle

clean:
rm -f dist/bashful build.log
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ config:
# which character used to delimintate the task list
bullet-char: "-"
# hide all subtasks after section completion
# hide all child tasks after task section completion
collapse-on-completion: false
# change the colors of the vertical progress bar for a task in a particular state.
Expand Down
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import (

"github.com/howeyc/gopass"
color "github.com/mgutz/ansi"
// "github.com/mholt/archiver"

"github.com/spf13/afero"
"github.com/urfave/cli"
Expand Down Expand Up @@ -176,7 +175,7 @@ ARCHIVE=$(awk '/^__BASHFUL_ARCHIVE__/ {print NR + 1; exit 0; }' $0)
tail -n+$ARCHIVE $0 | tar -xz -C $TMPDIR
pushd $TMPDIR > /dev/null
./bashful run {{.Runyaml}}
./bashful run {{.Runyaml}} $*
popd > /dev/null
rm -rf $TMPDIR
Expand Down

0 comments on commit e50f5fb

Please sign in to comment.