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 6211507 commit 17a9308Copy full SHA for 17a9308
overrides/path/node
@@ -10,7 +10,7 @@ PREPEND_PATH=`dirname $0`/prepend.js
10
11
# Call node with the given arguments, prefixed with our extra logic
12
if command -v winpty >/dev/null 2>&1; then
13
- winpty $real_node -r "$PREPEND_PATH" "$@"
+ winpty "$real_node" -r "$PREPEND_PATH" "$@"
14
else
15
- $real_node -r "$PREPEND_PATH" "$@"
+ "$real_node" -r "$PREPEND_PATH" "$@"
16
fi
overrides/path/php
@@ -19,7 +19,7 @@ PHP_ARGS=(
19
)
20
21
22
- winpty $real_php ${PHP_ARGS[@]}
+ winpty "$real_php" ${PHP_ARGS[@]}
23
24
- $real_php ${PHP_ARGS[@]}
+ "$real_php" ${PHP_ARGS[@]}
25
0 commit comments