Move create-backingfiles-partition.sh, create-backingfiles.sh, make-root-fs-readonly.sh to top level.

This commit is contained in:
cimryan
2018-10-23 22:24:16 -07:00
parent 59fff033ac
commit e4e24d008d
4 changed files with 3 additions and 3 deletions

View File

@@ -60,11 +60,11 @@ function check_available_space () {
function get_ancillary_setup_scripts () { function get_ancillary_setup_scripts () {
pushd /tmp 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 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 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 chmod +x ./make-root-fs-readonly.sh
popd popd
} }