Skip to content

Commit 0bed06c

Browse files
committed
bug in local template check
1 parent ab13dbf commit 0bed06c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/ionic/start.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ IonicTask.prototype.fetchSeed = function() {
163163
}
164164

165165
// Local Directory: /User/starterapp
166-
if( (this.template.indexOf('/') > -1 || this.template.indexOf('\\') > -1) && (this.indexOf('http://') === -1 && this.indexOf('https://') === -1)) {
166+
if( (this.template.indexOf('/') > -1 || this.template.indexOf('\\') > -1) && (this.template.indexOf('http://') === -1 && this.template.indexOf('https://') === -1)) {
167+
console.log('local', this.template)
167168
this.seedType = 'local';
168169
return this.fetchLocalStarter();
169170
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionic",
3-
"version": "1.2.4-beta2",
3+
"version": "1.2.4-beta3",
44
"preferGlobal": true,
55
"description": "A tool for creating and developing Ionic Framework mobile apps.",
66
"homepage": "http://ionicframework.com/",

0 commit comments

Comments
 (0)