Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug when variable ends with \ #1

Open
badrelmers opened this issue Sep 26, 2021 · 0 comments
Open

bug when variable ends with \ #1

badrelmers opened this issue Sep 26, 2021 · 0 comments

Comments

@badrelmers
Copy link

Hi,
First I want to thank you for this unique gem, I love it, it solves a lot of problems in setx and sentenv.

I found a small bug when the variable ends with a backslash \.
if I do:

regenv.exe set -nS c "D:\Bi\"

it is saved like that:

D:\Bi"

it should not save the "


my workaround for this is using doble \\:

regenv.exe set -nS c "D:\Bi\\"
REM gaves D:\Bi\

or delete the last backslash:

set "var=D:\Bi\"
REM -- Great example from Strawberry Perl's portable shell launcher:  this deletes the final backslash \
if #%var:~-1%# == #\# set var=%var:~0,-1%
regenv.exe set -nS c "%var%"
REM gaves D:\Bi

I hope you solve this.
thank very much for your nice work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant