File fix-shebangs.patch of Package git-subrepo
From 55708a497400f70c8aeff8b0f80f1655e85b929a Mon Sep 17 00:00:00 2001
From: Vitaly Zaitsev <vitaly@easycoding.org>
Date: Mon, 16 Apr 2018 23:41:31 +0200
Subject: [PATCH] Fixed path to Bash in shebangs.
---
ext/bashplus/bin/bash+ | 2 +-
ext/bashplus/lib/bash+.bash | 1 +
lib/git-subrepo | 2 +-
lib/git-subrepo.d/help-functions.bash | 2 +-
4 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/ext/bashplus/bin/bash+ b/ext/bashplus/bin/bash+
index 5178550..cc3de54 100755
--- a/ext/bashplus/bin/bash+
+++ b/ext/bashplus/bin/bash+
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/bash
#------------------------------------------------------------------------------
# Bash+ - Modern Bash Programming
#
diff --git a/lib/git-subrepo b/lib/git-subrepo
index 3b8f562..741c3d8 100755
--- a/lib/git-subrepo
+++ b/lib/git-subrepo
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/bash
#
#
# Copyright 2013-2020 - Ingy döt Net <ingy@ingy.net>
diff --git a/lib/git-subrepo.d/help-functions.bash b/lib/git-subrepo.d/help-functions.bash
index 28ff603..4446abb 100644
--- a/lib/git-subrepo.d/help-functions.bash
+++ b/lib/git-subrepo.d/help-functions.bash
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/bash
# DO NOT EDIT. This file generated by pkg/bin/generate-help-functions.pl.
--
2.14.3