mirror of
https://github.com/wez/wezterm.git
synced 2024-12-19 19:31:49 +03:00
6 lines
138 B
Bash
6 lines
138 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for shell in bash zsh fish ; do
|
||
|
target/debug/wezterm shell-completion --shell $shell > assets/shell-completion/$shell
|
||
|
done
|