浏览代码

Commenting out sed lines which cause errors on Big Sur #351

Mark Shust 4 年之前
父节点
当前提交
415e34a73f
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      compose/bin/start

+ 7 - 0
compose/bin/start

@@ -1,4 +1,9 @@
 #!/bin/bash
+
+## The following lines are commented oout per https://github.com/markshust/docker-magento/issues/351
+
+<< 'COMMENTING-OUT'
+
 function parseYaml {
   local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
   sed -ne "s|,$s\]$s\$|]|" \
@@ -40,6 +45,8 @@ done
 # Wait to exit until all missing files have been outputted to the user
 [ $IS_VALID = false ] && echo "Failed to start docker for missing volume files" && exit
 
+COMMENTING-OUT
+
 docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d --remove-orphans "$@"
 
 ## Blackfire support