From f0e65832943e3a314cfa19af8999e11b9c7f954b Mon Sep 17 00:00:00 2001 From: Grigorii Safronov Date: Mon, 4 Mar 2024 18:37:43 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20's?= =?UTF-8?q?cripts/gofmt.sh'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/gofmt.sh | 6 ------ 1 file changed, 6 deletions(-) delete mode 100755 scripts/gofmt.sh diff --git a/scripts/gofmt.sh b/scripts/gofmt.sh deleted file mode 100755 index e4ae4bd9..00000000 --- a/scripts/gofmt.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -fmtcount=`git ls-files | grep '.go$' | xargs gofmt -l 2>&1 | wc -l` -if [ $fmtcount -gt 0 ]; then - echo "run 'go fmt ./...' to format your source code." - exit 1 -fi