summaryrefslogtreecommitdiff
path: root/xmake/actions/update
diff options
context:
space:
mode:
authorruki <[email protected]>2023-03-03 22:52:29 +0800
committerruki <[email protected]>2023-03-03 22:52:29 +0800
commitc464a7c482ced95d40452a3ca4eee66220567d44 (patch)
treed74c1d3c54650e9a01fd397e307574c6758b9895 /xmake/actions/update
parent317910e7d4c19fc5aa461edea90cda0f2b16bc25 (diff)
install to fish profile
Diffstat (limited to 'xmake/actions/update')
-rw-r--r--xmake/actions/update/main.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake/actions/update/main.lua b/xmake/actions/update/main.lua
index afaed9e18..4433d18d8 100644
--- a/xmake/actions/update/main.lua
+++ b/xmake/actions/update/main.lua
@@ -308,6 +308,7 @@ function _initialize_shell()
if shell:endswith("bash") then target = (is_host("macosx") and "~/.bash_profile" or "~/.bashrc")
elseif shell:endswith("zsh") then target = "~/.zshrc"
elseif shell:endswith("ksh") then target = "~/.kshrc"
+ elseif shell:endswith("fish") then target = "~/.config/fish/config.fish"
end
command = "test -f \"$HOME/.xmake/profile\" && source \"$HOME/.xmake/profile\""