Remove wrong dollar sign

This commit is contained in:
Marcel Schwarz 2020-03-11 00:33:29 +01:00
parent 2a2805150e
commit 43016d7326

View File

@ -44,8 +44,8 @@ class ToolsInstaller:
else: else:
print("Version not supported by this installer") print("Version not supported by this installer")
return return
base_url = f"https://download.docker.com/linux/${linux_distro}" base_url = f"https://download.docker.com/linux/{linux_distro}"
subprocess.run("curl -fsSL " + base_url + "/gpg | sudo apt-key add -", shell=True) subprocess.run("curl -fsSL " + base_url + "/gpg | sudo apt-key add -", shell=True)
subprocess.run("apt-key fingerprint 0EBFCD88", shell=True) subprocess.run("apt-key fingerprint 0EBFCD88", shell=True)