Skip to content

Commit

Permalink
DEV: clean up docker detection
Browse files Browse the repository at this point in the history
previously we would output stuff to console if docker.io was missing
  • Loading branch information
SamSaffron committed Mar 19, 2019
1 parent 16fb17c commit 9eeb324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launcher
Expand Up @@ -81,7 +81,7 @@ config_file=containers/"$config".yml
cidbootstrap=cids/"$config"_bootstrap.cid
local_discourse=local_discourse
image=discourse/base:2.0.20190217
docker_path=`which docker.io || which docker`
docker_path=`which docker.io 2> /dev/null || which docker`
git_path=`which git`

if [ "${SUPERVISED}" = "true" ]; then
Expand Down

0 comments on commit 9eeb324

Please sign in to comment.