diff options
author | liamfallon <liam.fallon@est.tech> | 2022-04-13 18:23:43 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-04-15 11:14:27 +0100 |
commit | 41fc72569715ef1a86688325904d7833491c2891 (patch) | |
tree | ef0c7c88150ac9fa8fb00cfdef9d0aa1dd83f891 /integration | |
parent | 830f6ecf23834cad1f33eae6d470fb623609747c (diff) |
Fix typo on message in scripts
stage_release should be stage-release
Issue-ID: POLICY-4070
Change-Id: I5dc77649861298eaeee1dd7da790db725819ac78
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'integration')
-rwxr-xr-x | integration/src/release_scripts/releaseRepo.sh | 2 | ||||
-rwxr-xr-x | integration/src/release_scripts/releaseRepoImages.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/integration/src/release_scripts/releaseRepo.sh b/integration/src/release_scripts/releaseRepo.sh index ef1592f2..a0c48efe 100755 --- a/integration/src/release_scripts/releaseRepo.sh +++ b/integration/src/release_scripts/releaseRepo.sh @@ -138,7 +138,7 @@ next_release_version=${latest_snapshot_tag%-*} while true do - read -r -p "have you run 'stage_release' on the '$repo' repo? " yes_no + read -r -p "have you run 'stage-release' on the '$repo' repo? " yes_no case $yes_no in [Yy]* ) break ;; diff --git a/integration/src/release_scripts/releaseRepoImages.sh b/integration/src/release_scripts/releaseRepoImages.sh index 0bcae6a4..00eff051 100755 --- a/integration/src/release_scripts/releaseRepoImages.sh +++ b/integration/src/release_scripts/releaseRepoImages.sh @@ -137,7 +137,7 @@ next_release_version=${latest_snapshot_tag%-*} while true do - read -r -p "have you run 'stage_release' on the '$repo' repo? " yes_no + read -r -p "have you run 'stage-release' on the '$repo' repo? " yes_no case $yes_no in [Yy]* ) break ;; |