Skip to content

Commit 2f3f1b0

Browse files
committed
fix: renamed exex folder to exec
1 parent cfe1c67 commit 2f3f1b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exex/exec.go renamed to exec/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package exex
1+
package exec
22

33
import (
44
"fmt"

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"encoding/json"
88
"flag"
99
"fmt"
10-
"github.com/matfire/hammer/exex"
10+
"github.com/matfire/hammer/exec"
1111
"io"
1212
"log/slog"
1313
"os"
@@ -68,7 +68,7 @@ func main() {
6868
git.Pull(config, projectConfig, releasePayload)
6969
for i := 0; i < len(projectConfig.Commands); i++ {
7070
logger.Info("executing command", "project", project, "command", projectConfig.Commands[i], "index", i)
71-
err = exex.Exec(projectConfig.Commands[i], projectConfig.Path)
71+
err = exec.Exec(projectConfig.Commands[i], projectConfig.Path)
7272
if err != nil {
7373
logger.Error("failed executing command", "project", project, "command", projectConfig.Commands[i], "index", i)
7474
ctx.String(500, "failed to execute command number "+strconv.Itoa(i))

0 commit comments

Comments
 (0)