Kel Byers
Kel Byers
The main reason this is having issues is that the script is sourced into the current shell instead of starting a subshell. With a plain script that is not sourced,...
> > > @kelbyers Any updates on this issue?! @MuhammadJamaluddin I'm not sure why you are asking me about this. I am a user of this application and reported a...
I have had this issue, too. I have ditto installed through chocolatey, and per the advice above, I installed version 3.23.124.0 with `choco install ditto.install --version=3.23.124.0`. When that version of...
I have seen this issue. I am able to reliably produce it on my browser, by doing the following: - Manage containers - Choose a container - Manage Site List......
`wd show` works for anything that is not a subdirectory of my home directory. Also, it does not matter whether I specify a full path or not when adding the...
Hmm. `wd show ` does work: ``` ➜ wd show apps * Warp point: apps -> ~/Applications ```
Sorry about taking so long. I have run the tests: ``` ➜ /bin/zsh ./tests.sh test_empty_config ASSERT:should initially be an empty config expected: but was:< 0> test_simple_add_remove ASSERT:should have 1 wps...
Looks to me like the difference is in the output of the `wc` command. The version that comes with MacOS seems to indent the output. ``` ➜ grep wd tests.sh...
One thing that I notice looking at the code for `wd_show`. When figuring out the current directory to look for in the list of warp points, it runs: `PWD="${PWD/$HOME/~}"`. My...
Well, ignore my comment above. I looks like the substitution does work when I quote it: ``` ➜ echo "${PWD/$HOME/~}" ~/git/mfaerevaag/wd/test ```