Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions output-management/web-viewer/administrator-tools/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,10 @@ function checkZoweSetup() {
error "Zowe CLI must be installed to run this script."
fi

if ! zowe plugins validate '@broadcom/caview-for-zowe-cli' >/dev/null 2>&1; then
error "The View Plug-in for Zowe CLI must be installed to run this script."
# Requires caview or om-view plugin
if ! zowe plugins validate '@broadcom/caview-for-zowe-cli' >/dev/null 2>&1 &&
! zowe plugins validate '@broadcom/om-view-for-zowe-cli' >/dev/null 2>&1; then
error "The View Plug-in for Zowe CLI must be installed to run this script."
fi
}

Expand Down