From 676a3a45b54e1e9ceb42c7402ca04084c9c557d5 Mon Sep 17 00:00:00 2001 From: Jason Mehring Date: Sun, 26 Oct 2014 16:36:39 -0400 Subject: [PATCH] Fix a var typo when expaning hosts file --- scripts_debian/04_install_qubes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts_debian/04_install_qubes.sh b/scripts_debian/04_install_qubes.sh index 47530d4..85ed9eb 100755 --- a/scripts_debian/04_install_qubes.sh +++ b/scripts_debian/04_install_qubes.sh @@ -193,8 +193,8 @@ EOF # Looks like hosts file may contain tabs and qubes will not parse it # correctly # -------------------------------------------------------------------------- - expand "${INSTALLDIR}/etc/hosts" > "${INSATLLDIR}/etc/hosts.dist" - mv "${INSTALLDIR}/etc/hosts.dist" "${INSATLLDIR}/etc/hosts" + expand "${INSTALLDIR}/etc/hosts" > "${INSTALLDIR}/etc/hosts.dist" + mv "${INSTALLDIR}/etc/hosts.dist" "${INSTALLDIR}/etc/hosts" fi # ------------------------------------------------------------------------------