From 93151fff410d4ff793e3b2e009b3f2e79c40c59c Mon Sep 17 00:00:00 2001 From: Rahul Tarak Date: Sat, 15 Jan 2022 02:51:28 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20v0.0.11=20Add=20git=20init=20bac?= =?UTF-8?q?k?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- installer/package.json | 2 +- internal/commands/create.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/package.json b/installer/package.json index eb0ef32..a8d2a1a 100644 --- a/installer/package.json +++ b/installer/package.json @@ -1,6 +1,6 @@ { "name": "tsdev-installer", - "version": "0.0.10", + "version": "0.0.11", "description": "The installer for tsdev, a better tsdx", "scripts": { "postinstall": "node dist/postinstall.js install", diff --git a/internal/commands/create.go b/internal/commands/create.go index ab9c70e..652099f 100644 --- a/internal/commands/create.go +++ b/internal/commands/create.go @@ -240,7 +240,7 @@ func gitInit(path string) error { utils.ExecWithOutput(path, "git", "init") utils.ExecWithOutput(path, "git", "add", ".") - utils.ExecWithOutput(path, "git", "commit", "-m", "Tsdev setup") + utils.ExecWithOutput(path, "git", "commit", "-m", "🚀 Tsdev setup") return nil } @@ -300,7 +300,7 @@ func HandleCreateCommand(name string) error { setupWg.Wait() - // gitInit(dirPath(name)) + gitInit(dirPath(name)) return nil }