소스 검색

Fix issue with onlinesetup script

Mark Shust 4 년 전
부모
커밋
92b803ced8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      lib/onelinesetup

+ 2 - 2
lib/onelinesetup

@@ -7,6 +7,6 @@ EDITION=${3:-community}
 
 curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
 
+# &&'s are used below otherwise onelinesetup script fails/errors after bin/download
 bin/download "${VERSION}" "${EDITION}"
-
-bin/setup ${DOMAIN}
+  && bin/setup ${DOMAIN}