Bug in diff-dll.vbs. Filename with space will always be reported as identical.
From: Chung Wong <chung.wong_at_delcam.com>
Date: Mon, 28 Apr 2014 23:47:23 +0100
Hi,
I would like to report a bug. When I do TSVN Diff on a dll file that has space in its filename, it will always be reported as identical even though it has been changed. The problem is on line 57 of the diff-dll.vbs script:
exitStatus = WshShell.Run("fc.exe "+sBaseDoc+" "+sNewDoc, 0, True)
It should have been:
exitStatus = WshShell.Run("fc.exe /b """+sBaseDoc+""" """+sNewDoc+"""", 0, True)
The extra quotes are needed to handle the space in the filename correctly. Not sure the "/b" is necessary but it shouldn't hurt.
Thanks for making TSVN such a great tool to use!
--------------------------------------------------------------------------------------------------
------------------------------------------------------
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
|
This is an archived mail posted to the TortoiseSVN Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.