Skip to content

Commit 17793e6

Browse files
committedMay 24, 2014
Merge pull request ionic-team#6 from rdelafuente/dev
Fix git-check task and wrong gulp init command
2 parents 4d7bcf9 + 2d3d1ac commit 17793e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To use this project as is, first clone the repo from GitHub, then run:
3333
$ cd ionic-app-base
3434
$ sudo npm install -g cordova ionic gulp
3535
$ npm install
36-
$ gulp init
36+
$ gulp install
3737
```
3838

3939
## Using Sass (optional)

‎gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ gulp.task('install', ['git-check'], function() {
3737
});
3838

3939
gulp.task('git-check', function(done) {
40-
if (sh.which('git')) {
40+
if (!sh.which('git')) {
4141
console.log(
4242
' ' + gutil.colors.red('Git is not installed.'),
4343
'\n Git, the version control system, is required to download Ionic.',

0 commit comments

Comments
 (0)
Please sign in to comment.