diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-17 06:59:03 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-17 06:59:03 (EST) |
commit | ddfa78fcc8b6521f70513f3d9b0fefdb455e4840 (patch) | |
tree | e189aba2b362d1263b72719e6cc7b42f1ba4b87a /src | |
parent | 4c0f6549e9ec67c71b7f783240c5081bf6765be2 (diff) |
run_installer(): Rename message strings
Diffstat (limited to 'src')
-rw-r--r-- | src/installer.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/installer.sh b/src/installer.sh index 9891ff3..47a6cba 100644 --- a/src/installer.sh +++ b/src/installer.sh @@ -67,13 +67,13 @@ run_installer() fi if ! profile_validate_archplat "${arch}" "${plat}"; then - error "$(get_msg 'install_bad_archplat')" "${arch}" "${plat}" + error "$(get_msg 'installer_bad_archplat')" "${arch}" "${plat}" return 1 fi - info "$(get_msg 'install_selected_arch')" "${arch}" - info "$(get_msg 'install_selected_plat')" "${plat}" - info "$(get_msg 'install_selected_mirror')" "${mirror}" + info "$(get_msg 'installer_selected_arch')" "${arch}" + info "$(get_msg 'installer_selected_plat')" "${plat}" + info "$(get_msg 'installer_selected_mirror')" "${mirror}" inst="$(profile_installer_type "${arch}" "${plat}")" if ! is_installer "${inst}"; then |