Skip to content

Commit 711a395

Browse files
committed
Merge pull request #2 from josh-taylor/0.3.0
0.3.0
2 parents 3aafe1a + bb2dcdc commit 711a395

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Magento Generator [![Build Status](https://travis-ci.org/josh-taylor/generator-magento.png?branch=0.2.0)](https://travis-ci.org/josh-taylor/generator-magento)
1+
# Magento Generator [![Build Status](https://travis-ci.org/josh-taylor/generator-magento.png?branch=0.3.0)](https://travis-ci.org/josh-taylor/generator-magento)
22

33
A yeoman generator for starting a Magento project. Still quite early in development, but usable.
44

@@ -14,9 +14,5 @@ A yeoman generator for starting a Magento project. Still quite early in developm
1414
- Use `grunt serve` to automatically build compass files and start a [php cli server](http://www.php.net/manual/en/features.commandline.webserver.php) (Navigate to http://127.0.0.1:8000).
1515
- Automatically set the required permissions for a Magento installation
1616

17-
## Roadmap
18-
19-
- [] Use github clone of Magento repository instead of tarball
20-
2117
## License
2218
[MIT License](http://en.wikipedia.org/wiki/MIT_License)

app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ MagentoGenerator.prototype.projectfiles = function projectfiles() {
7878

7979
MagentoGenerator.prototype.download = function download() {
8080
var cb = this.async(),
81-
url = 'http://www.magentocommerce.com/downloads/assets/' + this.magentoVersion + '/magento-' + this.magentoVersion + '.tar.gz';
81+
url = 'https://github.com/speedupmate/Magento-CE-Mirror/archive/magento-ce-' + this.magentoVersion + '.tar.gz';
8282

8383
this.tarball(url, './', function(err) {
8484
if (err) return done(err);

app/templates/_bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dependencies": {<% if (includeBootstrap && !includeCompass) { %>
55
"bootstrap": "~3.1.0"
66
<% } else if (includeBootstrap && includeCompass) { %>
7-
"bootstrap-sass": "~3.1.0"
7+
"bootstrap-sass-official": "~3.1.0"
88
<% } %>}
99
}
1010

0 commit comments

Comments
 (0)