Skip to content

Commit

Permalink
[chore] migrate /bin/bash shebangs to /usr/bin/env bash
Browse files Browse the repository at this point in the history
Signed-off-by: Aabid Sofi <mailtoaabid01@gmail.com>
  • Loading branch information
aabidsofi19 committed Jun 19, 2024
1 parent d1fad1e commit 2cf5420
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions install/Makefile.core.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ GOPATH = $(shell go env GOPATH)
GOBIN = $(GOPATH)/bin
KEYS_PATH="../../server/permissions/keys.csv"

SHELL :=/bin/bash -o pipefail
SHELL := /usr/bin/env bash -o pipefail

#-----------------------------------------------------------------------------
# Components
Expand All @@ -52,4 +52,4 @@ APPLICATIONCONFIGPATH="./apps.json"
#-----------------------------------------------------------------------------
# Build
#-----------------------------------------------------------------------------
RELEASE_CHANNEL="edge"
RELEASE_CHANNEL="edge"
3 changes: 2 additions & 1 deletion install/latest_release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
#! /usr/bin/env bash

# GIT_REF=`git symbolic-ref HEAD`
# if [[ $GIT_REF = refs/tags* ]]
# then
Expand Down

0 comments on commit 2cf5420

Please sign in to comment.