aboutsummaryrefslogtreecommitdiffstats
path: root/.husky
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-17 05:23:33 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-17 05:23:33 +0530
commit0e00e27488de08992adfedf6fad16b12f21d93cd (patch)
treee685be0f3626eda6d0af0184f2399e0bb8ae2ab1 /.husky
parentUpdated 'recipes' submodule manually (need to fix husky on CI) [skip ci] (diff)
downloadferdium-app-0e00e27488de08992adfedf6fad16b12f21d93cd.tar.gz
ferdium-app-0e00e27488de08992adfedf6fad16b12f21d93cd.tar.zst
ferdium-app-0e00e27488de08992adfedf6fad16b12f21d93cd.zip
fix: trying to make commitizen work without interactive terminal when it runs in CI [skip ci]
Diffstat (limited to '.husky')
-rwxr-xr-x.husky/prepare-commit-msg2
1 files changed, 1 insertions, 1 deletions
diff --git a/.husky/prepare-commit-msg b/.husky/prepare-commit-msg
index 1c2c393cd..0c2aa2281 100755
--- a/.husky/prepare-commit-msg
+++ b/.husky/prepare-commit-msg
@@ -6,5 +6,5 @@ FILE_NAME="$(dirname "$0")/_/husky.sh"
6if [ -f $FILE_NAME ]; then 6if [ -f $FILE_NAME ]; then
7 . $FILE_NAME 7 . $FILE_NAME
8 8
9 exec < /dev/tty && git cz --hook || true 9 ( exec < /dev/tty && git cz --hook ) || true
10fi 10fi