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 9715632 commit 20980a8Copy full SHA for 20980a8
OracleDatabase/RAC/OracleRealApplicationClusters/dockerfiles/buildContainerImage.sh
@@ -36,11 +36,12 @@ checksumPackages() {
36
echo "Checking if required packages are present and valid..."
37
md5sum -c Checksum
38
# shellcheck disable=SC2181
39
- if [ "$?" -ne 0 ]; then
+ status=$?
40
+ if [ "$status" -ne 0 ]; then
41
echo "MD5 for required packages to build this image did not match!"
42
echo "Make sure to download missing files in folder $VERSION."
43
# shellcheck disable=SC2320
- exit $?
44
+ exit "$status"
45
fi
46
else
47
echo "Ignored MD5 sum, 'md5sum' command not available.";
0 commit comments