appveyor: use '/' in RELEASE.local paths

This commit is contained in:
Ralph Lange
2020-03-26 16:14:28 +01:00
parent eceeab66cf
commit b7d505c2e2

View File

@@ -131,7 +131,7 @@ def source_set(name):
# Set places[var] = location
def update_release_local(var, location):
release_local = os.path.join(cachedir, 'RELEASE.local')
updated_line = '{0}={1}'.format(var, location)
updated_line = '{0}={1}'.format(var, location.replace('\\', '/'))
places[var] = location
if not os.path.exists(release_local):