Skip to content

Commit d1fe572

Browse files
marinakogrussgold
authored andcommitted
switched from wget to curl for downloading script
1 parent 70c257f commit d1fe572

File tree

1 file changed

+3
-1
lines changed
  • samples/kubernetes/end2end/demo-domains/domainBuilder

1 file changed

+3
-1
lines changed

samples/kubernetes/end2end/demo-domains/domainBuilder/build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ function createArchive() {
2222
echo "Download the metrics exporter webapp from ://github.com/oracle/weblogic-monitoring-exporter/releases/download/v${MONITORING_EXPORTER_VERSION}/get${MONITORING_EXPORTER_VERSION}.sh..."
2323

2424
cd $PRJ_ROOT
25-
wget https://github.com/oracle/weblogic-monitoring-exporter/releases/download/v${MONITORING_EXPORTER_VERSION}/get${MONITORING_EXPORTER_VERSION}.sh
25+
curl -O -L https://github.com/oracle/weblogic-monitoring-exporter/releases/download/v${MONITORING_EXPORTER_VERSION}/get${MONITORING_EXPORTER_VERSION}.sh
26+
chmod 777 get${MONITORING_EXPORTER_VERSION}.sh
2627
bash get${MONITORING_EXPORTER_VERSION}.sh ${CUR_DIR}/../../dashboard/exporter-config.yaml
28+
echo 'Monitoring Exporter web application is built'
2729

2830
cd $CUR_DIR
2931
cp $PRJ_ROOT/wls-exporter.war \

0 commit comments

Comments
 (0)