# HG changeset patch # User thomas_-_s # Date 1325112815 0 # Node ID 27e329bdb08a96c98744f2f3b2dd1f0fb958fb55 # Parent 88c587deed8c4a1396f9177c347bd1531b03de42 Added missing quotes and backslash to the VBS Beautifier helper batch file. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@1059 59b1889a-e5ac-428c-b0c7-476e01d41282 diff -r 88c587deed8c -r 27e329bdb08a indenters/vbsbeaut.bat --- a/indenters/vbsbeaut.bat Tue Dec 27 15:39:08 2011 +0000 +++ b/indenters/vbsbeaut.bat Wed Dec 28 22:53:35 2011 +0000 @@ -1,7 +1,8 @@ @echo off set callpath=%0 +::echo %0 set exeBasePath=%callpath:~0,-13% ::echo %exeBasePath% -copy %exeBasePath%vbsbeaut_keywords.txt" .\keywords.txt > nul -copy %exeBasePath%vbsbeaut_keywords_indent.txt" .\keywords_indent.txt > nul -%exeBasePath%vbsbeaut.exe" %1 %2 %3 %4 %5 %6 %7 \ No newline at end of file +copy "%exeBasePath%\vbsbeaut_keywords.txt" .\keywords.txt > nul +copy "%exeBasePath%\vbsbeaut_keywords_indent.txt" .\keywords_indent.txt > nul +"%exeBasePath%\vbsbeaut.exe" %1 %2 %3 %4 %5 %6 %7 \ No newline at end of file