From e4e24d008de4a0dc4bec6f108a3b1701d855b669 Mon Sep 17 00:00:00 2001 From: cimryan Date: Tue, 23 Oct 2018 22:24:16 -0700 Subject: [PATCH] Move create-backingfiles-partition.sh, create-backingfiles.sh, make-root-fs-readonly.sh to top level. --- ...ngfiles-partition.sh => create-backingfiles-partition.sh | 0 .../create-backingfiles.sh => create-backingfiles.sh | 0 .../make-root-fs-readonly.sh => make-root-fs-readonly.sh | 0 setup-teslausb | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) rename windows_archive/create-backingfiles-partition.sh => create-backingfiles-partition.sh (100%) rename windows_archive/create-backingfiles.sh => create-backingfiles.sh (100%) rename windows_archive/make-root-fs-readonly.sh => make-root-fs-readonly.sh (100%) diff --git a/windows_archive/create-backingfiles-partition.sh b/create-backingfiles-partition.sh similarity index 100% rename from windows_archive/create-backingfiles-partition.sh rename to create-backingfiles-partition.sh diff --git a/windows_archive/create-backingfiles.sh b/create-backingfiles.sh similarity index 100% rename from windows_archive/create-backingfiles.sh rename to create-backingfiles.sh diff --git a/windows_archive/make-root-fs-readonly.sh b/make-root-fs-readonly.sh similarity index 100% rename from windows_archive/make-root-fs-readonly.sh rename to make-root-fs-readonly.sh diff --git a/setup-teslausb b/setup-teslausb index edee190..31723d7 100644 --- a/setup-teslausb +++ b/setup-teslausb @@ -60,11 +60,11 @@ function check_available_space () { function get_ancillary_setup_scripts () { pushd /tmp - wget https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/windows_archive/create-backingfiles-partition.sh + wget https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/create-backingfiles-partition.sh chmod +x ./create-backingfiles-partition.sh - wget https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/windows_archive/create-backingfiles.sh + wget https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/create-backingfiles.sh chmod +x ./create-backingfiles.sh - wget https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/windows_archive/make-root-fs-readonly.sh + wget https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/make-root-fs-readonly.sh chmod +x ./make-root-fs-readonly.sh popd }