From 1ecd6a4584ccc56b248787d430be2eae9ab9c6f0 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 17 Aug 2023 21:21:38 +0900 Subject: [PATCH] Fix pre-commit failure This addresses the following error in pre-commit check. check that scripts with shebangs are executable..........................Failed - hook id: check-shebang-scripts-are-executable - exit code: 1 templates/barbican/bin/init.sh: has a shebang but is not marked executable! If it is supposed to be executable, try: `chmod +x templates/barbican/bin/init.sh` If on Windows, you may also need to: `git add --chmod=+x templates/barbican/bin/init.sh` If it not supposed to be executable, double-check its shebang is wanted. --- templates/barbican/bin/init.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 templates/barbican/bin/init.sh diff --git a/templates/barbican/bin/init.sh b/templates/barbican/bin/init.sh old mode 100644 new mode 100755