소스 검색

Added `rm -rf src` before enterprise composer install

Mark Shust 4 년 전
부모
커밋
f4272781ef
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      compose/bin/download

+ 1 - 0
compose/bin/download

@@ -4,6 +4,7 @@
 edition=${2:-community}
 
 if [[ "$edition" == "enterprise" ]]; then
+    rm -rf src
     composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-enterprise-edition=$1 src
     exit 0
 fi