Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Add Command hook #22

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,9 @@
entry: run-go-build.sh
files: '\.go$'
language: 'script'
description: "Runs `go build`, requires golang"
description: "Runs `go build`, requires golang"
- id: exec-command
name: 'exec-command'
entry: run-command.sh
language: 'script'
description: "It can run any command pass in args."
3 changes: 3 additions & 0 deletions run-command.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash
set -e
make $1