From 68d10495e2792986067dde41bb6459450ea2e6c3 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 4 Dec 2022 09:51:56 -0800 Subject: [PATCH] Remove unnecessary executable bit from Rakefile The Rakefile is not executed directly but is instead executed through the rake command. This entry point doesn't require the file include the executable bit. --- Rakefile | 2 -- 1 file changed, 2 deletions(-) mode change 100755 => 100644 Rakefile diff --git a/Rakefile b/Rakefile old mode 100755 new mode 100644 index fd5db1e..2ce9c59 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,3 @@ -#!/usr/bin/env rake - require "bundler/gem_tasks" require "rspec/core/rake_task"