소스 검색

[appveyor] quote the dll path

Dan Korostelev 6 년 전
부모
커밋
5c47b4c314
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/runci/Deployment.hx

+ 1 - 1
tests/runci/Deployment.hx

@@ -125,7 +125,7 @@ class Deployment {
 		if (cygRoot != null) {
 			while (true)
 			{
-				var proc = new sys.io.Process('$cygRoot/bin/bash', ['-lc', '/usr/bin/cygpath -w `which $name`']);
+				var proc = new sys.io.Process('$cygRoot/bin/bash', ['-lc', '/usr/bin/cygpath -w "`which $name`"']);
 				var out = proc.stdout.readAll().toString().trim();
 				var err = proc.stderr.readAll().toString().trim();
 				if (proc.exitCode() == 0)