소스 검색

fix target name in case

Jorge Aparicio 8 년 전
부모
커밋
2485284910
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      ci/install.sh

+ 3 - 3
ci/install.sh

@@ -12,9 +12,9 @@ install_deps() {
 
 install_qemu() {
     case $TARGET in
-        powerpc64-unknown-linux-gnu)
-            sudo apt-get install -y --no-install-recommends \
-                 qemu-user
+        powerpc64le-unknown-linux-gnu)
+            apt-get install -y --no-install-recommends \
+                    qemu-user
             ;;
     esac
 }