Backslash character in compile window escapes dollar signs · Issue #1587 · TrenchBroom/TrenchBroom · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with this line
"D:\Juegos\quake dp\ID1\maps\${MAP_BASE_NAME}-compile.bsp"
i get this:
Copying 'D:\TrenchBroom\quakespasm\id1\maps\qump-topher-compile.bsp' to 'D:\Juegos\quake dp\ID1\maps\${MAP_BASE_NAME}-compile.bsp'
with this line other line
D:/Juegos/quake dp/ID1/maps/${MAP_BASE_NAME}-compile.bsp
i get this:
Copying 'D:\TrenchBroom\quakespasm\id1\maps\qump-topher-compile.bsp' to 'D:\Juegos\quake dp\ID1\maps\qump-topher-compile.bsp'
Windows use this slash for folders: '\'
linux use this slash for folders: '/'
changing '\' with '/' manually solves the problem, but windows by default use '\'
so, when someone in windows copy the full path of a folder to the clipboard, the path contains '\' slashes instead of '/' slashes.
The text was updated successfully, but these errors were encountered:
kduske
changed the title
Slash character in compile window
Backslash character in compile window escapes dollar signs
Dec 28, 2016
with this line
"D:\Juegos\quake dp\ID1\maps\${MAP_BASE_NAME}-compile.bsp"
i get this:
Copying 'D:\TrenchBroom\quakespasm\id1\maps\qump-topher-compile.bsp' to 'D:\Juegos\quake dp\ID1\maps\${MAP_BASE_NAME}-compile.bsp'
with this line other line
D:/Juegos/quake dp/ID1/maps/${MAP_BASE_NAME}-compile.bsp
i get this:
Copying 'D:\TrenchBroom\quakespasm\id1\maps\qump-topher-compile.bsp' to 'D:\Juegos\quake dp\ID1\maps\qump-topher-compile.bsp'
Windows use this slash for folders: '\'
linux use this slash for folders: '/'
changing '\' with '/' manually solves the problem, but windows by default use '\'
so, when someone in windows copy the full path of a folder to the clipboard, the path contains '\' slashes instead of '/' slashes.
The text was updated successfully, but these errors were encountered: