We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19382ea commit c959c00Copy full SHA for c959c00
docker/test.sh
@@ -12,6 +12,11 @@ BASE_DIR="$(cd "$(dirname "$0")" && pwd)"
12
BASE_PORT=5000
13
SCEN="$1"
14
15
+if ! command -v sshpass >/dev/null; then
16
+ echo "Error: sshpass is required but not installed. Please install sshpass and try again." >&2
17
+ exit 1
18
+fi
19
+
20
run_scenario() {
21
local scenario="$1"
22
local testfile="${BASE_DIR}/tests/${scenario}.sh"
0 commit comments