aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2023-05-30 15:59:47 -0600
committerjason2023-05-30 15:59:47 -0600
commitf0cde9eedea954391ec9339e71cac8e928554596 (patch)
treef6b2648ff3681e0397cfea6f2b0194d899179f24 /bash
parent3461603cdee1d41c5fff022de728c6f22cdf0ba6 (diff)
downloaddotfiles-f0cde9eedea954391ec9339e71cac8e928554596.tar.gz
dotfiles-f0cde9eedea954391ec9339e71cac8e928554596.zip
fix issue with podman check
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 5238de8..5f5ab03 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -84,7 +84,7 @@ fi
84 84
85DOCKER_PATH=`which docker` 85DOCKER_PATH=`which docker`
86PODMAN_PATH=`which podman` 86PODMAN_PATH=`which podman`
87if [ -n $PODMAN_PATH ]; then 87if [[ -n $PODMAN_PATH ]]; then
88 source <(podman completion bash) 88 source <(podman completion bash)
89 # Enable docker if it's podman 89 # Enable docker if it's podman
90 if [ -z $DOCKER_PATH ]; then 90 if [ -z $DOCKER_PATH ]; then