2
0
Эх сурвалжийг харах

Revert disabling Temando_Shipping module in bin/magento #250

The changes made are being reverted, as while sample data takes a long time to install, it actually does eventually complete, so the Temando_Shipping module is not causing the issue. There is a significant delay when installing sample data, and this needs to be further researched.
Mark Shust 5 жил өмнө
parent
commit
c08dedbb90
1 өөрчлөгдсөн 1 нэмэгдсэн , 15 устгасан
  1. 1 15
      compose/bin/magento

+ 1 - 15
compose/bin/magento

@@ -1,16 +1,2 @@
 #!/bin/bash
-if [ "$1" == "sampledata:deploy" ]; then
-  echo "Disabling Temando_Shipping module to fix conflict with deploying sample data."
-  bin/cli bin/magento module:disable Temando_Shipping
-  
-  bin/cli bin/magento sampledata:deploy
-  
-  echo "Automatically running setup:upgrade for you to populate sample data!"
-  bin/cli bin/magento setup:upgrade
-  
-  echo "Re-enabling Temando_Shipping module and flushing cache since sample data is now deployed."
-  bin/cli bin/magento module:enable Temando_Shipping
-  bin/cli bin/magento cache:flush
-else
-  bin/cli bin/magento "$@"
-fi
+bin/cli bin/magento "$@"