Browse Source

fix: [base] remove bogus file creation due to typo

pull/31/head
Valentin Lab 7 months ago
parent
commit
914b7ed77b
  1. 2
      precise/host/hooks/install.d/60-docker.sh

2
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 </dev/null
curl -sSL https://get.docker.io | sh || exit 1

Loading…
Cancel
Save