We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06359b8 commit 8069bbeCopy full SHA for 8069bbe
ULWGL/reaper
@@ -1,5 +1,7 @@
1
#!/usr/bin/env sh
2
# Fake reaper file to avoid errors while running from source
3
-args="$*"
4
-cmd=${args#* -- }
5
-$cmd
+while [ "$1" != "--" ]; do
+ shift
+done
6
+shift
7
+"$@"
0 commit comments