94ef32a556
Signed-off-by: Jaroslav Kysela <jkysela@redhat.com>
11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# a quick test
|
|
hdsploader -h
|
|
if [ $? -ne 0 ]; then
|
|
echo "The return code from hdsploader is invalid ($?)!"
|
|
exit 99
|
|
fi
|