Kaydet (Commit) 0ae09b26 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

updater: convert to unix path in another place

Change-Id: I07ab2d69891975c93ab1824410eacc30eb98fcb5
Reviewed-on: https://gerrit.libreoffice.org/40779Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst 502390fd
......@@ -5,6 +5,7 @@ import os
import subprocess
from config import parse_config
from path import convert_to_unix
from tools import replace_variables_in_string
......@@ -25,7 +26,7 @@ def main():
subprocess.call(command, shell=True)
for file in os.listdir(update_dir):
if file.endswith('.mar'):
subprocess.call(['scp', os.path.join(update_dir, file), upload_url])
subprocess.call(['scp', convert_to_unix(os.path.join(update_dir, file)), upload_url])
if __name__ == '__main__':
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment