Skip to content

Commit c4c5674

Browse files
authored
fix(devserver): set probe template directory (#806)
1 parent 7361dfe commit c4c5674

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

devserver.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ -z $MVN ]; then
66
MVN=$(which mvn)
77
fi
88

9-
for i in archive clientlib conf templates; do
9+
for i in archive clientlib conf templates probes; do
1010
if [ -e $work_dir/$i ]; then
1111
if [ ! -d $work_dir/$i ]; then
1212
echo "$work_dir/$i already exists but is not a directory"
@@ -38,4 +38,5 @@ MAVEN_OPTS="${flags[@]}" \
3838
CRYOSTAT_CLIENTLIB_PATH="$work_dir/clientlib" \
3939
CRYOSTAT_CONFIG_PATH="$work_dir/conf" \
4040
CRYOSTAT_TEMPLATE_PATH="$work_dir/templates" \
41+
CRYOSTAT_PROBE_TEMPLATE_PATH="$work_dir/probes" \
4142
$MVN -Dcryostat.minimal=true clean vertx:run

0 commit comments

Comments
 (0)