Skip to content

Commit

Permalink
use sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tashima42 committed Oct 11, 2023
1 parent f73e9b0 commit e8d627e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/rancher/rancher.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const (

setKDMBranchReferencesScriptFileName = "set_kdm_branch_references.sh"
setChartReferencesScriptFileName = `set_chart_references.sh`
cloneCheckoutRancherScript = `#!/bin/bash
cloneCheckoutRancherScript = `#!/bin/sh
set -e
BRANCH_NAME={{ .BranchName }}
Expand Down Expand Up @@ -87,7 +87,7 @@ git add package/Dockerfile
git add scripts/package-env
git commit --all --signoff -m "update chart branch references to {{ .NewBranch }}"`
pushChangesScript = `
if [ "${DRY_RUN}" == false ]; then
if [ "${DRY_RUN}" = false ]; then
git push --set-upstream origin ${BRANCH_NAME}
fi`
)
Expand Down

0 comments on commit e8d627e

Please sign in to comment.