Skip to content

Commit

Permalink
πŸ”– v0.0.11 Add git init back
Browse files Browse the repository at this point in the history
  • Loading branch information
CryogenicPlanet committed Jan 14, 2022
1 parent 7012425 commit 93151ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion installer/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions internal/commands/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -300,7 +300,7 @@ func HandleCreateCommand(name string) error {

setupWg.Wait()

// gitInit(dirPath(name))
gitInit(dirPath(name))

return nil
}

0 comments on commit 93151ff

Please sign in to comment.