From fa27271647c2b1bf6a069523001ce8d20a946a8f Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Fri, 10 Jul 2020 17:02:23 -0700 Subject: [PATCH] Change shebang on contrib scripts --- contrib/clean_pyc.sh | 2 +- contrib/downgrade.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/clean_pyc.sh b/contrib/clean_pyc.sh index e3d47e44..9283fb59 100755 --- a/contrib/clean_pyc.sh +++ b/contrib/clean_pyc.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Display information echo "This script will remove *.pyc files. These files are generated by Python, but they can cause conflicts after an upgrade. It's safe to remove them, because they will be regenerated." diff --git a/contrib/downgrade.sh b/contrib/downgrade.sh index edd4779e..e4822c46 100755 --- a/contrib/downgrade.sh +++ b/contrib/downgrade.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Parameter check if [ -z "$1" ]; then