Просмотр исходного кода

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

Mark Shust 4 лет назад
Родитель
Сommit
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