Last active
August 29, 2015 14:27
-
-
Save fliphess/de8c039302b9c3d110c5 to your computer and use it in GitHub Desktop.
update magento to the latest version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[ -f ./mage ]|| { echo "Mage not found! Exiting!"; exit 1; } | |
chmod +x mage | |
./mage mage-setup . | |
./mage config-set preferred_state stable | |
./mage sync | |
./mage install http://connect20.magentocommerce.com/community Mage_All_Latest --force | |
php shell/indexer.php reindexall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment