Skip to content

Commit 3024dbe

Browse files
authored
Merge pull request #62 from viniciussanchez/master
Option to initialize the boss with default values
2 parents c92c4cd + 788113a commit 3024dbe

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

cmd/init.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@ import (
55
"github.com/spf13/cobra"
66
)
77

8+
var quiet bool
9+
810
var initCmd = &cobra.Command{
911
Use: "init",
1012
Short: "Initialize a new project",
1113
Long: `This command initialize a new project`,
1214
Run: func(cmd *cobra.Command, args []string) {
13-
core.InitializeBossPackage()
15+
core.InitializeBossPackage(quiet)
1416
},
1517
}
1618

1719
func init() {
1820
RootCmd.AddCommand(initCmd)
21+
initCmd.Flags().BoolVar(&quiet, "q", false, "Quiet")
1922
}

consts/consts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const XmlTagNamePropertyAttributeValue string = "'$(Base)'!=''"
3838

3939
const XmlTagNameLibraryPath string = "DCC_UnitSearchPath"
4040

41-
const Version string = "v3.0.2"
41+
const Version string = "v3.0.3"
4242

4343
const BossInternalDir = "internal."
4444
const BossInternalDirOld = "{internal}"

core/initializePackage.go

+17-10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ package core
33
import (
44
"bufio"
55
"fmt"
6-
"github.com/hashload/boss/env"
7-
"github.com/hashload/boss/models"
86
"os"
97
"path/filepath"
108
"regexp"
119
"strings"
10+
11+
"github.com/hashload/boss/env"
12+
"github.com/hashload/boss/models"
1213
)
1314

1415
func printHead() {
@@ -38,7 +39,7 @@ func getParamOrDef(msg string, def string) string {
3839
return def
3940
}
4041

41-
func doInitialization() {
42+
func doInitialization(quiet bool) {
4243
printHead()
4344
pkgJson, _ := models.LoadPackage(true)
4445

@@ -49,15 +50,21 @@ func doInitialization() {
4950
folderName = allString[0][1]
5051
}
5152

52-
pkgJson.Name = getParamOrDef("package name: ("+folderName+")", folderName)
53-
pkgJson.Homepage = getParamOrDef("homepage", "")
54-
pkgJson.Version = getParamOrDef("version: (1.0.0)", "1.0.0")
55-
pkgJson.Description = getParamOrDef("description", "")
56-
pkgJson.MainSrc = getParamOrDef("source folder: (./)", "./")
53+
if quiet {
54+
pkgJson.Name = folderName
55+
pkgJson.Version = "1.0.0"
56+
pkgJson.MainSrc = "./"
57+
} else {
58+
pkgJson.Name = getParamOrDef("package name: ("+folderName+")", folderName)
59+
pkgJson.Homepage = getParamOrDef("homepage", "")
60+
pkgJson.Version = getParamOrDef("version: (1.0.0)", "1.0.0")
61+
pkgJson.Description = getParamOrDef("description", "")
62+
pkgJson.MainSrc = getParamOrDef("source folder: (./)", "./")
63+
}
5764

5865
pkgJson.Save()
5966
}
6067

61-
func InitializeBossPackage() {
62-
doInitialization()
68+
func InitializeBossPackage(quiet bool) {
69+
doInitialization(quiet)
6370
}

installer/boss.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define BossName "Boss"
2-
#define BossVersion "3.0.2"
2+
#define BossVersion "3.0.3"
33
#define BossPublisher "Hashload"
44
#define BossURL "https://github.com/HashLoad/boss"
55

0 commit comments

Comments
 (0)