-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fake reaper splitting arguments with spaces (#66)
* Fix fake reaper splitting input with spaces * Use main repo version for reaper, since the module is tracked by the repo already * Fix packaging issues due to rename
- Loading branch information
1 parent
76bc4ed
commit caa5daa
Showing
4 changed files
with
10 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/usr/bin/env sh | ||
# Fake reaper file to avoid errors while running from source | ||
args="$*" | ||
cmd=${args#* -- } | ||
$cmd | ||
while [ "$1" != "--" ]; do | ||
shift | ||
done | ||
shift | ||
"$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters