fix bash + python3 shebangs (#33287)

fix shebangs
old-commit-hash: 1dcd660815
This commit is contained in:
Maxime Desroches
2024-08-13 21:22:13 -07:00
committed by GitHub
parent b97ed10ea1
commit c551f1d239
44 changed files with 49 additions and 49 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
if [ $# -eq 0 ]; then
echo "usage: $0 <pull-request-number>"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -ex
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"

View File

@@ -1,3 +1,3 @@
#!/usr/bin/bash
#!/usr/bin/env bash
nmcli connection modify --temporary esim ipv4.route-metric 1 ipv6.route-metric 1
nmcli con up esim

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
if [ $# -eq 0 ]; then

View File

@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
RED='\033[0;31m'

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
function fail {
echo $1 >&2