mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
4 lines
166 B
Bash
4 lines
166 B
Bash
#!/usr/bin/env bash
|
|
# this is simply testing if the application root returns HTTP STATUS_CODE
|
|
curl -so /dev/null -w '%{response_code}' https://$1 | grep $STATUS_CODE
|