mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-18 10:15:13 +00:00
Specify bash strictness options (#1924)
This commit is contained in:
parent
5c57e17b77
commit
d2d75787d2
8
.github/workflows/linux-ci-helper.sh
vendored
8
.github/workflows/linux-ci-helper.sh
vendored
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# s3fs - FUSE-based file system backed by Amazon S3
|
# s3fs - FUSE-based file system backed by Amazon S3
|
||||||
#
|
#
|
||||||
@ -19,13 +19,17 @@
|
|||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
#
|
#
|
||||||
|
|
||||||
echo "${PRGNAME} [INFO] Start Linux helper for installing packages."
|
set -o errexit
|
||||||
|
set -o nounset
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
#-----------------------------------------------------------
|
#-----------------------------------------------------------
|
||||||
# Common variables
|
# Common variables
|
||||||
#-----------------------------------------------------------
|
#-----------------------------------------------------------
|
||||||
PRGNAME=$(basename "$0")
|
PRGNAME=$(basename "$0")
|
||||||
|
|
||||||
|
echo "${PRGNAME} [INFO] Start Linux helper for installing packages."
|
||||||
|
|
||||||
#-----------------------------------------------------------
|
#-----------------------------------------------------------
|
||||||
# Parameter check
|
# Parameter check
|
||||||
#-----------------------------------------------------------
|
#-----------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user