Skip to content

Commit

Permalink
chore(resources): use more portable shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
b-zee authored and joshuef committed Jul 11, 2024
1 parent 1d736b5 commit 35f3d7b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/scripts/dag-user-comparator.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Check if the correct number of arguments is provided
if [ "$#" -ne 2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/dag-user-sync.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Check if the correct number of arguments is provided
if [ "$#" -ne 2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/make-wallets.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Function to print a message in a box
print_in_box() {
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/set-release-channel.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Define the workspace Cargo.toml location (ensure you're in the workspace root)
WORKSPACE_CARGO_TOML="./Cargo.toml"
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/sync_crates_versions.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Parse members from Cargo.toml using tomlq
members=()
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/upload-random-data.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Target rate of 1.5mb/s

Expand Down

0 comments on commit 35f3d7b

Please sign in to comment.