mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
512506f0f9
Attempting to execute something like `exec "$test"` results in a fish internal token (a Unicode private use char) being printed in the resulting error message. That's obviously not desirable as well as confusing. Fixes #3187
6 lines
252 B
Text
6 lines
252 B
Text
Variables may not be used as commands. In fish, please define a function or use 'eval $test'.
|
|
fish: exec $test
|
|
^
|
|
Variables may not be used as commands. In fish, please define a function or use 'eval "$test"'.
|
|
fish: exec "$test"
|
|
^
|