From 5d3284032b62748da5b8e7dd4fa8fca3ae8141a4 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 18 Dec 2019 16:56:58 -0500 Subject: [PATCH] Fix `scripts/hooks/post-checkout` Shell scripts must use LFs. Also make it executable. (Both failures probably don't happen on some windows environment where git is told to translate EOLs, and all files are assumed executable.) --- scripts/hooks/post-checkout | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 scripts/hooks/post-checkout diff --git a/scripts/hooks/post-checkout b/scripts/hooks/post-checkout old mode 100644 new mode 100755 index 28a583794d..36f5df5e92 --- a/scripts/hooks/post-checkout +++ b/scripts/hooks/post-checkout @@ -1,2 +1,2 @@ -#!/bin/sh -npm run gulp -- generate-diagnostics \ No newline at end of file +#!/bin/sh +npm run gulp -- generate-diagnostics