Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eks: Using env in the shebang of a script for convenience #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion k8s/eks/bash/functions.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# error log prep check
prep_log_dir(){
Expand Down
2 changes: 1 addition & 1 deletion k8s/eks/bash/perf.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
test_start_time="$(date -u +%s)"
# Run many testground runs, one by one, and print stats
#
Expand Down
2 changes: 1 addition & 1 deletion k8s/eks/monitoring.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script will install the following:
# https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack
#
Expand Down
2 changes: 1 addition & 1 deletion k8s/eks/testground_install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Let's make sure to check for exit code 1, undefined variables, or masked pipeline errors; if encountered, drop the script
set -euo pipefail
start=$(date +"%Y-%m-%d-%T")
Expand Down
2 changes: 1 addition & 1 deletion k8s/eks/testground_uninstall.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Let's make sure to check for exit code 1, undefined variables, or masked pipeline errors; if encountered, drop the script
set -euo pipefail
start=$(date +"%Y-%m-%d-%T")
Expand Down