zellij: use full executable path

This commit is contained in:
Alexis (Poliorcetics) Bourget 2024-02-07 08:45:44 +01:00 committed by Robert Helgesson
parent f99eace7c1
commit 5b9156fa9a
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED
2 changed files with 7 additions and 6 deletions

View file

@ -26,16 +26,16 @@
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
'eval "$(zellij setup --generate-auto-start bash)"'
'eval "$(@zellij@/bin/dummy setup --generate-auto-start bash)"'
assertFileExists home-files/.zshrc
assertFileContains \
home-files/.zshrc \
'eval "$(zellij setup --generate-auto-start zsh)"'
'eval "$(@zellij@/bin/dummy setup --generate-auto-start zsh)"'
assertFileExists home-files/.config/fish/config.fish
assertFileContains \
home-files/.config/fish/config.fish \
'eval (zellij setup --generate-auto-start fish | string collect)'
'eval (@zellij@/bin/dummy setup --generate-auto-start fish | string collect)'
'';
}