diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-17 11:54:29 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-17 11:54:29 +0800 |
commit | 809250243e8f4c52dfda7dbf498582c5a6aca8fb (patch) | |
tree | fc29631fae69cae34cd657e2d733c3d8aab4519d /git_hooks_deploy.go | |
parent | git_hooks_deploy.go: Deploy hooks to filesystem (diff) | |
download | forge-809250243e8f4c52dfda7dbf498582c5a6aca8fb.tar.gz forge-809250243e8f4c52dfda7dbf498582c5a6aca8fb.tar.zst forge-809250243e8f4c52dfda7dbf498582c5a6aca8fb.zip |
*.go: Reformat
Diffstat (limited to '')
-rw-r--r-- | git_hooks_deploy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git_hooks_deploy.go b/git_hooks_deploy.go index 01be550..eaffb5b 100644 --- a/git_hooks_deploy.go +++ b/git_hooks_deploy.go @@ -32,7 +32,7 @@ func deploy_hooks_to_filesystem() (err error) { return err } - err = os.Chmod(filepath.Join(config.Hooks.Execs, "git_hooks_client"), 0755) + err = os.Chmod(filepath.Join(config.Hooks.Execs, "git_hooks_client"), 0o755) if err != nil { return err } |