Skip to content
Open
Changes from 1 commit
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: 6 additions & 0 deletions script/get_catalog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ fi
# Refresh catalog sets. We can clean any leftover as well.
rm -f ${rootdir}/pkg/resources/resources/camel-catalog-*

if ! command -v mvn &> /dev/null
then
echo "Maven (mvn) is required but not installed."
exit 1
fi

mvn -q dependency:copy -Dartifact="org.apache.camel.k:camel-k-catalog:$runtime_version:yaml:catalog" \
-Dmdep.useBaseVersion=true \
-DoutputDirectory=${rootdir}/resources/ \
Expand Down
Loading