Kami commented on a change in pull request #1602:
URL: https://github.com/apache/libcloud/pull/1602#discussion_r734352851



##########
File path: libcloud/compute/ssh.py
##########
@@ -688,7 +688,7 @@ def _sanitize_file_path(self, cwd, file_path):
                 # Windows path
                 file_path = cwd + '\\' + file_path
             else:
-                file_path = pjoin(cwd, file_path)
+                file_path = pjoin(cwd, file_path).replace("\\", "/")

Review comment:
       Same here, I believe this will also run on Linux target which will 
likely cause issues.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to