mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-03 15:01:16 -03:00
functions: handle hostname starting with dash
If a hostname starts with a dash `-` character, the prompt_hostname function
fails because the `string` function interprets it as an option instead
of an argument.
(cherry picked from commit 6c9c033126)
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
function prompt_hostname --description 'short hostname for the prompt'
|
||||
string replace -r "\..*" "" $hostname
|
||||
string replace -r -- "\..*" "" $hostname
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user