Skip to content

Commit 428a8b5

Browse files
committed
minor fixes
1 parent 01b18d7 commit 428a8b5

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

test/assets/common_versions.sh.template

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,3 @@ OPENSHIFT_TESTS_PRIVATE_REPO_BRANCH="release-4.${{MINOR_VERSION}}"
178178
OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT="61613d96c91db7b2907c24dd257075d3f2201991"
179179
export OPENSHIFT_TESTS_PRIVATE_REPO_BRANCH
180180
export OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT
181-

test/bin/common_versions.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,3 @@ OPENSHIFT_TESTS_PRIVATE_REPO_BRANCH="release-4.${MINOR_VERSION}"
178178
OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT="61613d96c91db7b2907c24dd257075d3f2201991"
179179
export OPENSHIFT_TESTS_PRIVATE_REPO_BRANCH
180180
export OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT
181-

test/bin/manage_brew_rpms.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ UNAME_M="${UNAME_M:-$(uname -m)}"
99

1010
usage() {
1111
echo "Usage: $(basename "$0") [access | download <version> <path> [version_type]]"
12-
echo " access: Exit with non-zero status if brew cannot be accessed"
1312
echo " download: Download the latest RPM packages for the given version, Z-1, Y-2 and Y-1 to the path as specified"
1413
echo " - version: the X.Y version. Example: 4.19"
1514
echo " - path: the output directory. Example: /_output/test-images/brew-rpms"
1615
echo " - version_type: Optional. Valid values: rc, ec, zstream and nightly. Default: nightly"
16+
echo " access: Exit with non-zero status if brew cannot be accessed"
1717
}
1818

1919
action_access() {
@@ -246,7 +246,7 @@ case "${action}" in
246246
download)
247247
[ $# -ne 3 ] && [ $# -ne 4 ] && usage && exit 1
248248
shift
249-
action_"${action}" "$@"
249+
"action_${action}" "$@"
250250
;;
251251
-h)
252252
usage
@@ -257,4 +257,3 @@ case "${action}" in
257257
exit 1
258258
;;
259259
esac
260-

0 commit comments

Comments
 (0)