From 47198118b58d5966c1987e2cd65416dbbab47760 Mon Sep 17 00:00:00 2001 From: sgf Date: Sat, 11 Dec 2021 00:09:05 +0300 Subject: [PATCH] fix(git): Remove unnecessary git_hooks dir. --- day1/git_hooks/post-commit | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100755 day1/git_hooks/post-commit diff --git a/day1/git_hooks/post-commit b/day1/git_hooks/post-commit deleted file mode 100755 index f5002cd..0000000 --- a/day1/git_hooks/post-commit +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -euf - -remotes="$(git remote)" -if echo "$remotes" | grep -q 'sync'; then - git push --all sync - git push --tags sync -else - echo ">>>>> No sync remote defined." 1>&2 -fi -- 2.20.1