-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add_golicense: user name and user email config from cmd line.
- Loading branch information
1 parent
29232a0
commit f321842
Showing
2 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,22 +21,22 @@ import ( | |
"github.com/q191201771/naza/pkg/nazalog" | ||
) | ||
|
||
var licenseTmpl = `// Copyright %d, Chef. All rights reserved. | ||
var licenseTmpl = `// Copyright %d, %s. All rights reserved. | ||
// https://%s | ||
// | ||
// Use of this source code is governed by a MIT-style license | ||
// that can be found in the License file. | ||
// | ||
// Author: Chef ([email protected]) | ||
// Author: %s (%s) | ||
` | ||
|
||
func main() { | ||
dir := parseFlag() | ||
dir, name, email := parseFlag() | ||
|
||
year := time.Now().Year() | ||
repo := achieveRepo(dir) | ||
license := fmt.Sprintf(licenseTmpl, year, repo) | ||
license := fmt.Sprintf(licenseTmpl, year, name, repo, name, email) | ||
nazalog.Debug(license) | ||
|
||
var ( | ||
|
@@ -67,12 +67,14 @@ func achieveRepo(root string) string { | |
return string(bytes.TrimSpace(repo)) | ||
} | ||
|
||
func parseFlag() string { | ||
func parseFlag() (string, string, string) { | ||
dir := flag.String("d", "", "dir of repo") | ||
name := flag.String("n", "", "user name") | ||
email := flag.String("e", "", "user email") | ||
flag.Parse() | ||
if *dir == "" { | ||
if *dir == "" || *name == "" || *email == "" { | ||
flag.Usage() | ||
os.Exit(1) | ||
} | ||
return *dir | ||
return *dir, *name, *email | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
echo '-----add_go_license-----' | ||
if command -v add_go_license >/dev/null 2>&1; then | ||
add_go_license -d ./ | ||
add_go_license -d ./ -e [email protected] -n Chef | ||
else | ||
echo 'CHEFNOTICEME add_go_license not exist!' | ||
fi | ||
|