Link to the installation guide from the shell Toolbox

This will provide a path forward to those who stumble across the POSIX
shell implementation and don't know how to use the Go implementation.

https://github.com/containers/toolbox/pull/1094
This commit is contained in:
Debarshi Ray 2022-08-29 21:48:40 +02:00
parent 56a18d2a15
commit 6f4e8b97dd

10
toolbox
View file

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# Copyright © 2018 2021 Red Hat, Inc. # Copyright © 2018 2022 Red Hat, Inc.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -16,7 +16,8 @@
# #
# THIS IMPLEMENTATION OF TOOLBOX IS NO LONGER MAINTAINED. # THIS IMPLEMENTATION OF TOOLBOX IS NO LONGER MAINTAINED.
# Please, use the Go implementation instead. # Please, use the Go implementation instead:
# https://containertoolbx.org/install/
exec 3>/dev/null exec 3>/dev/null
@ -2190,7 +2191,10 @@ update_container_and_image_names()
arguments=$(save_positional_parameters "$@") arguments=$(save_positional_parameters "$@")
echo "THIS IMPLEMENTATION OF TOOLBOX IS NO LONGER MAINTAINED." echo "THIS IMPLEMENTATION OF TOOLBOX IS NO LONGER MAINTAINED."
echo "Please, use the Go implementation instead." printf "Please, use the Go implementation instead: "
# shellcheck disable=SC1003
printf '\033]8;;https://containertoolbx.org/install/\033\\containertoolbx.org/install\033]8;;\033\\'
printf "\n"
echo echo
host_id=$(get_host_id) host_id=$(get_host_id)