Merge pull request #3809 from radarhere/winbuild

Removed unused file
This commit is contained in:
Hugo 2019-04-27 10:44:53 +03:00 committed by GitHub
commit 6d5b8926be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +0,0 @@
import sys
with open(sys.argv[1], 'r') as fd:
content = '\n'.join(line.strip() for line in fd if line.strip())
if len(sys.argv) == 3:
content = content.replace('Win32', sys.argv[2]).replace('x64', sys.argv[2])
with open(sys.argv[1], 'w') as fd:
fd.write(content)