From 50bfeed45eb071ad616ec7841d2e72d21b230be1 Mon Sep 17 00:00:00 2001 From: Robert Nelson <robertcnelson@gmail.com> Date: Thu, 19 Dec 2013 16:05:22 -0600 Subject: [PATCH] chroot: make sure /var/www/index.html is not in the way Signed-off-by: Robert Nelson <robertcnelson@gmail.com> --- scripts/chroot.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/chroot.sh b/scripts/chroot.sh index 711c36d49..3e7737696 100755 --- a/scripts/chroot.sh +++ b/scripts/chroot.sh @@ -615,6 +615,9 @@ cat > ${DIR}/chroot_script.sh <<-__EOF__ chown -R ${user_name}:${user_name} /var/lib/cloud9 echo "/var/lib/cloud9 : https://github.com/beagleboard/bonescript" >> /opt/source/list.txt + if [ -f /var/www/index.html ] ; then + rm -rf /var/www/index.html || true + fi qemu_command="git clone https://github.com/beagleboard/bone101 /var/www/ --depth 1 || true" qemu_warning git clone https://github.com/beagleboard/bone101 /var/www/ --depth 1 || true -- GitLab