mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
SCRIPTS=(shellcheck mkimage buildone buildall pushall)
|
|
|
|
shellcheck -s bash "${SCRIPTS[@]}"
|