build: use make for building the project (#1304)

This commit is contained in:
Oleg Lobanov 2021-03-04 00:10:08 +01:00 committed by GitHub
parent 2d2c598fa6
commit 23f84642e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 218 additions and 194 deletions

View file

@ -14,7 +14,7 @@ var cmdsAddCmd = &cobra.Command{
Use: "add <event> <command>",
Short: "Add a command to run on a specific event",
Long: `Add a command to run on a specific event.`,
Args: cobra.MinimumNArgs(2), //nolint:mnd
Args: cobra.MinimumNArgs(2), //nolint:gomnd
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
s, err := d.store.Settings.Get()
checkErr(err)