You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"Please install podman using your distribution's package manager"
@@ -43,9 +43,9 @@ get_distro_podman_install() {
43
43
}
44
44
45
45
if!command -v podman >/dev/null 2>&1;then
46
-
INSTALL_CMD=$(get_distro_podman_install)
46
+
INSTALL_CMD=$(get_distro)
47
47
echo"Warning: podman is not installed or not in PATH."
48
-
echo"To install on your system, try: $INSTALL_CMD"
48
+
echo"To install on your system, try: $INSTALL_CMD podman"
49
49
echo"Please install podman to proceed, it's literally all you need. Don't even need attention. Just podman. Just get podman. What are you waiting for? Stop reading this and install podman."
50
50
exit 1
51
51
fi
@@ -55,7 +55,8 @@ if [ -z "$SKIP_SUBMODULE_CHECK" ]; then
55
55
ifcommand -v git >/dev/null 2>&1;then
56
56
git submodule update --init --recursive
57
57
else
58
-
echo"Git is not available, I know I said you only need podman, which is technically true. But, git is the easiest way to download third_party dependencies. Either install git (perhaps with `sudo apt install git`) or download the submodules manually. If you already downloaded the submodule, rerun this script with SKIP_SUBMODULE_CHECK=1."
58
+
INSTALL_CMD=$(get_distro)
59
+
echo"Git is not available, I know I said you only need podman, which is technically true. But, git is the easiest way to download third_party dependencies. Either install git (perhaps with $INSTALL_CMD git) or download the submodules manually. If you already downloaded the submodule, rerun this script with SKIP_SUBMODULE_CHECK=1."
0 commit comments