Skip to content

Commit

Permalink
Scripts shebangs don't hardcode path to bash (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
Unisay authored Jun 19, 2024
1 parent 1592343 commit 2282427
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/create-slug.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail

Expand Down Expand Up @@ -58,4 +58,4 @@ source scripts/distribute-merged-prs.sh IntersectMBO/cardano-api current $DATE $

source scripts/summarise-merged-prs.sh IntersectMBO/cardano-node current
source scripts/summarise-merged-prs.sh IntersectMBO/cardano-cli current
source scripts/summarise-merged-prs.sh IntersectMBO/cardano-api current
source scripts/summarise-merged-prs.sh IntersectMBO/cardano-api current
2 changes: 1 addition & 1 deletion scripts/distribute-merged-prs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail

Expand Down
4 changes: 2 additions & 2 deletions scripts/download-prs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail

Expand Down Expand Up @@ -39,4 +39,4 @@ gh pr list --repo "$repository" \
--json number,title,author,createdAt,closedAt,files,mergedAt,baseRefName,url,body \
> "$temp_json_file"

cat "$temp_json_file" | yq -P > "$out_dir/download.yaml"
cat "$temp_json_file" | yq -P > "$out_dir/download.yaml"

0 comments on commit 2282427

Please sign in to comment.