From 33b37bb5ace747c68826ed27886e1d96bd238f3d Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Thu, 3 Sep 2020 03:25:12 -0400 Subject: [PATCH] other: Add missing shebang to husky pre-push script --- .cargo-husky/hooks/pre-push | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cargo-husky/hooks/pre-push b/.cargo-husky/hooks/pre-push index cb2307a8..a1e3616f 100755 --- a/.cargo-husky/hooks/pre-push +++ b/.cargo-husky/hooks/pre-push @@ -1,3 +1,5 @@ +#!/bin/sh + echo "Running pre-push hook:" echo "Executing: cargo +nightly clippy -- -D clippy::all"