From 914b7ed77bc6a99d162de47d0a873ae0ea52c1f3 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Wed, 11 Oct 2023 18:11:38 +0200 Subject: [PATCH] fix: [base] remove bogus file creation due to typo --- precise/host/hooks/install.d/60-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precise/host/hooks/install.d/60-docker.sh b/precise/host/hooks/install.d/60-docker.sh index 5cfbd87..015eddd 100755 --- a/precise/host/hooks/install.d/60-docker.sh +++ b/precise/host/hooks/install.d/60-docker.sh @@ -4,7 +4,7 @@ just_installed= if ! type -p docker; then echo "Installing docker..." - type -p curl >dev/null || + type -p curl >/dev/null || apt-get install -y curl