Skip to content
Snippets Groups Projects
Commit 93ed193b authored by Matt Harbison's avatar Matt Harbison
Browse files

windows: don't consider '$$' to be an escaped '$' when translating to cmd.exe

This functionality was inherited from `os.path.expandvars()`.  But the point of
adding this translating code is to be able to write a portable hook, and bash
wouldn't replace '$$' with '$'.  Escaping with '\' works, and is portable.
parent 5957fdd1
No related branches found
No related tags found
No related merge requests found
......@@ -269,5 +269,6 @@
>>> # Single quote prevents expansion, as does \$ escaping
>>> shelltocmdexe(b"cmd '$var1 ${var2} %var3%' \$var1 \${var2} \\", e)
"cmd '$var1 ${var2} %var3%' $var1 ${var2} \\"
>>> # $$ -> $, %% is not special, but can be the end and start of variables
>>> # $$ is not special. %% is not special either, but can be the end and
>>> # start of consecutive variables
>>> shelltocmdexe(b"cmd $$ %% %var1%%var2%", e)
......@@ -273,5 +274,5 @@
>>> shelltocmdexe(b"cmd $$ %% %var1%%var2%", e)
'cmd $ %% %var1%%var2%'
'cmd $$ %% %var1%%var2%'
>>> # No double substitution
>>> shelltocmdexe(b"$var1 %var1%", {b'var1': b'%var2%', b'var2': b'boom'})
'%var1% %var1%'
......@@ -306,11 +307,8 @@
else:
var = path[:index]
res += b'%' + var + b'%'
elif c == b'$': # variable or '$$'
if path[index + 1:index + 2] == b'$':
res += c
index += 1
elif path[index + 1:index + 2] == b'{':
elif c == b'$': # variable
if path[index + 1:index + 2] == b'{':
path = path[index + 2:]
pathlen = len(path)
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment