Skip to content
This repository was archived by the owner on Jul 11, 2018. It is now read-only.

Fix git-check task and wrong gulp init command #6

Merged
merged 1 commit into from
May 24, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ To use this project as is, first clone the repo from GitHub, then run:
$ cd ionic-app-base
$ sudo npm install -g cordova ionic gulp
$ npm install
$ gulp init
$ gulp install
```

## Using Sass (optional)
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ gulp.task('install', ['git-check'], function() {
});

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