Merge pull request #6551 from zmstone/fix-portable-shebang
fix: portable shebang
This commit is contained in:
commit
4a7b1bb7d8
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -eux pipefail
|
set -eux pipefail
|
||||||
|
|
||||||
# Helper script for creating data export files
|
# Helper script for creating data export files
|
||||||
|
|
||||||
container() {
|
container() {
|
||||||
|
|
2
bin/emqx
2
bin/emqx
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
# -*- tab-width:4;indent-tabs-mode:nil -*-
|
# -*- tab-width:4;indent-tabs-mode:nil -*-
|
||||||
# ex: ts=4 sw=4 et
|
# ex: ts=4 sw=4 et
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
# -*- tab-width:4;indent-tabs-mode:nil -*-
|
# -*- tab-width:4;indent-tabs-mode:nil -*-
|
||||||
# ex: ts=4 sw=4 et
|
# ex: ts=4 sw=4 et
|
||||||
|
|
||||||
|
|
2
build
2
build
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# This script helps to build release artifacts.
|
# This script helps to build release artifacts.
|
||||||
# arg1: profile, e.g. emqx | emqx-edge | emqx-pkg | emqx-edge-pkg
|
# arg1: profile, e.g. emqx | emqx-edge | emqx-pkg | emqx-edge-pkg
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
## EMQ docker image start script
|
## EMQ docker image start script
|
||||||
# Huang Rui <vowstar@gmail.com>
|
# Huang Rui <vowstar@gmail.com>
|
||||||
# EMQ X Team <support@emqx.io>
|
# EMQ X Team <support@emqx.io>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
latest_release=$(git describe --abbrev=0 --tags)
|
latest_release=$(git describe --abbrev=0 --tags)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## This script prints Linux distro name and its version number
|
## This script prints Linux distro name and its version number
|
||||||
## e.g. macos, centos8, ubuntu20.04
|
## e.g. macos, centos8, ubuntu20.04
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=2090
|
# shellcheck disable=2090
|
||||||
###############
|
###############
|
||||||
## args and env validation
|
## args and env validation
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=2090
|
# shellcheck disable=2090
|
||||||
###############
|
###############
|
||||||
## args and env validation
|
## args and env validation
|
||||||
|
|
Loading…
Reference in New Issue