@@ -27,20 +27,20 @@ if [ "$PROJECT_SOURCE" == "composer" ]; then
27
27
# Install from magento
28
28
sudo -u vagrant composer create-project --no-interaction --no-install --no-progress \
29
29
--repository=https://repo.magento.com/ magento/project-" $PROJECT_EDITION " -edition=" $PROJECT_VERSION " " $PROJECT_NAME " -d " $DIRECTORY_BUILD "
30
- # Install sample data
31
- if [ " $PROJECT_SAMPLE " == " true" ]; then
32
- sudo -u vagrant composer require -d " $PROJECT_BUILD " \
33
- magento/module-bundle-sample-data magento/module-widget-sample-data \
34
- magento/module-theme-sample-data magento/module-catalog-sample-data \
35
- magento/module-customer-sample-data magento/module-cms-sample-data \
36
- magento/module-catalog-rule-sample-data magento/module-sales-rule-sample-data \
37
- magento/module-review-sample-data magento/module-tax-sample-data \
38
- magento/module-sales-sample-data magento/module-grouped-product-sample-data \
39
- magento/module-downloadable-sample-data magento/module-msrp-sample-data \
40
- magento/module-configurable-sample-data magento/module-product-links-sample-data \
41
- magento/module-wishlist-sample-data magento/module-swatches-sample-data \
42
- magento/sample-data-media magento/module-offline-shipping-sample-data
43
- fi
30
+ # Install sample data
31
+ if [ " $PROJECT_SAMPLE " == " true" ]; then
32
+ sudo -u vagrant composer require -d " $PROJECT_BUILD " \
33
+ magento/module-bundle-sample-data magento/module-widget-sample-data \
34
+ magento/module-theme-sample-data magento/module-catalog-sample-data \
35
+ magento/module-customer-sample-data magento/module-cms-sample-data \
36
+ magento/module-catalog-rule-sample-data magento/module-sales-rule-sample-data \
37
+ magento/module-review-sample-data magento/module-tax-sample-data \
38
+ magento/module-sales-sample-data magento/module-grouped-product-sample-data \
39
+ magento/module-downloadable-sample-data magento/module-msrp-sample-data \
40
+ magento/module-configurable-sample-data magento/module-product-links-sample-data \
41
+ magento/module-wishlist-sample-data magento/module-swatches-sample-data \
42
+ magento/sample-data-media magento/module-offline-shipping-sample-data
43
+ fi
44
44
else
45
45
# Install from git
46
46
sudo -u vagrant git clone " $PROJECT_REPOSITORY " " $PROJECT_BUILD "
49
49
50
50
# Composer install
51
51
sudo -u vagrant composer install -d " $PROJECT_BUILD " --no-progress --no-interaction --no-suggest
52
- chmod +x " $PROJECT_PATH " /bin/magento
53
52
54
53
# Rsync directory
55
54
if [ " $PROJECT_BUILD " != " $PROJECT_PATH " ]; then
@@ -66,6 +65,7 @@ if [ "$PROJECT_MOUNT" != "nfs" ] || [ "$PROJECT_MOUNT_PATH" == "app" ]; then
66
65
fi
67
66
68
67
# Run install
68
+ chmod +x " $PROJECT_PATH " /bin/magento
69
69
sudo -u vagrant " $PROJECT_PATH " /bin/magento setup:uninstall -n -q
70
70
sudo -u vagrant " $PROJECT_PATH " /bin/magento setup:install \
71
71
--base-url=" http://${PROJECT_URL} /" \
0 commit comments