소스 검색

always try to install C# dependencies on linux

Aleksandr Kuzmenko 6 년 전
부모
커밋
3afc0a212d
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      tests/runci/targets/Cs.hx

+ 1 - 4
tests/runci/targets/Cs.hx

@@ -11,10 +11,7 @@ class Cs {
 	static public function getCsDependencies() {
 		switch (systemName) {
 			case "Linux":
-				if (commandSucceed("mono", ["--version"]))
-					infoMsg('mono has already been installed.');
-				else
-					Linux.requireAptPackages(["mono-devel", "mono-mcs"]);
+				Linux.requireAptPackages(["mono-devel", "mono-mcs"]);
 				runCommand("mono", ["--version"]);
 			case "Mac":
 				if (commandSucceed("mono", ["--version"]))