1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 04:56:12 +03:00

quote pwd in open-wezterm-here

so that it will work for locations that have spaces in their names.

refs: #2103
This commit is contained in:
Wez Furlong 2022-07-22 06:45:05 -07:00
parent 397bddbf6b
commit f70a3e0c9b

View File

@ -2,4 +2,4 @@
# This script is a helper that starts a new terminal window
# in the cwd of the calling process, rather than using the
# default cwd which is usually the home directory.
wezterm start --cwd $PWD -- "$@"
exec wezterm start --cwd "$PWD" -- "$@"