From 759efce146bd7fe4da3228b9dea501a2eb708fc5 Mon Sep 17 00:00:00 2001 From: zigomir Date: Mon, 11 Jul 2016 20:22:44 -0700 Subject: [PATCH] Windows fix for local templates. No need to check for fowrad slash when checking if path is local. --- bin/vue-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/vue-init b/bin/vue-init index a08fcf5a48..e9a7d02588 100755 --- a/bin/vue-init +++ b/bin/vue-init @@ -90,7 +90,7 @@ if (exists(to)) { function run () { // check if template is local - if (hasSlash && exists(template)) { + if (exists(template)) { generate(name, template, to, function (err) { if (err) logger.fatal(err) console.log()