Commit 4733f31e authored by Tyler Mills's avatar Tyler Mills
Browse files

Fix magento download comment bug

Showing with 8 additions and 8 deletions
+8 -8
#!/usr/bin/env bash
# Download latest Magento 2
#wget $(curl -s https://api.github.com/repos/magento/magento2/releases/latest | grep zipball_url | cut -d '"' -f 4) -O magento_latest.zip
#
## Unzip Magento & copy to /app
#unzip magento_latest.zip -d /tmp/magento-extract
#cp --verbose -R /tmp/magento-extract/magento*/. /app
#
## Init auth.json
#rm magento_latest.zip && cp auth.json.sample auth.json
wget $(curl -s https://api.github.com/repos/magento/magento2/releases/latest | grep zipball_url | cut -d '"' -f 4) -O magento_latest.zip
# Unzip Magento & copy to /app
unzip magento_latest.zip -d /tmp/magento-extract
cp --verbose -R /tmp/magento-extract/magento*/. /app
# Init auth.json
rm magento_latest.zip && cp auth.json.sample auth.json
# Provide next step instructions
echo ""
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment