Skip to content

Commit a2c78c0

Browse files
committed
The executable bash script was not able to protect arguments with spaces.
1 parent 8a80da6 commit a2c78c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/roosterize

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ _DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44

55

66
( cd $_DIR/../
7-
python -m roosterize.main $@
7+
python -m roosterize.main "$@"
88
)

dist-bin/roosterize

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ _DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44

55

66
( cd $_DIR/../
7-
./roosterize $@
7+
./roosterize "$@"
88
)

0 commit comments

Comments
 (0)