aboutsummaryrefslogtreecommitdiffstats
path: root/.husky
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-12-19 07:37:15 +0530
committerLibravatar GitHub <noreply@github.com>2021-12-19 07:37:15 +0530
commitd1c523da9877739a727674f553c0bd84933341b5 (patch)
tree821b69aa11389203eefa592c7188b00369d31ffa /.husky
parent5.6.5-nightly.3 [skip ci] (diff)
downloadferdium-app-d1c523da9877739a727674f553c0bd84933341b5.tar.gz
ferdium-app-d1c523da9877739a727674f553c0bd84933341b5.tar.zst
ferdium-app-d1c523da9877739a727674f553c0bd84933341b5.zip
Remove 'commitizen' straggling code (#2339) [skip ci]
Diffstat (limited to '.husky')
-rwxr-xr-x.husky/prepare-commit-msg10
1 files changed, 0 insertions, 10 deletions
diff --git a/.husky/prepare-commit-msg b/.husky/prepare-commit-msg
deleted file mode 100755
index 238765e56..000000000
--- a/.husky/prepare-commit-msg
+++ /dev/null
@@ -1,10 +0,0 @@
1#!/bin/sh
2
3FILE_NAME="$(dirname "$0")/_/husky.sh"
4
5# Conditionally invoke so as to avoid running npm commands if this is a clean checkout (ie before installing npm modules)
6if [ -f $FILE_NAME ]; then
7 . $FILE_NAME
8
9 ( exec < /dev/tty && git commit --hook ) || true
10fi