Skip to content

Commit e50f5fb

Browse files
committed
changed wording; allow bundle runner to accept arguments
1 parent 6d4bf7d commit e50f5fb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $(TARGETS):
77

88
run:
99
make build
10-
rm 16-bundle-manifest.bundle
10+
rm -f 16-bundle-manifest.bundle
1111
rm -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

3738
clean:
3839
rm -f dist/bashful build.log

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import (
1919

2020
"github.com/howeyc/gopass"
2121
color "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)
176175
tail -n+$ARCHIVE $0 | tar -xz -C $TMPDIR
177176
178177
pushd $TMPDIR > /dev/null
179-
./bashful run {{.Runyaml}}
178+
./bashful run {{.Runyaml}} $*
180179
popd > /dev/null
181180
rm -rf $TMPDIR
182181

0 commit comments

Comments
 (0)