diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-07-07 08:49:58 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-07-07 08:49:58 -0300 |
commit | c54aec10bb9b7367f97956def49650bf7076ad37 (patch) | |
tree | fa6c9b95a54e0c4ebf5348ce7ddf2716eb837b98 /files | |
parent | ab8048b50e568a6414327baf4b9fa2279a18b9b4 (diff) | |
download | bootless-c54aec10bb9b7367f97956def49650bf7076ad37.tar.gz bootless-c54aec10bb9b7367f97956def49650bf7076ad37.tar.bz2 |
Minor script fixes
Diffstat (limited to 'files')
-rwxr-xr-x | files/bootless | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/bootless b/files/bootless index b607b52..be8fa2e 100755 --- a/files/bootless +++ b/files/bootless @@ -76,10 +76,10 @@ function bootless_init { # Create a fresh repository mkdir -p $BOOTLESS_DIR/{default,custom,grub} - mkdir -p $BOOTLESS_DIR/custom/{debian,memtest} + mkdir -p $BOOTLESS_DIR/default/{debian,memtest} touch $BOOTLESS_DIR/{default,custom,grub}/.empty touch $BOOTLESS_DIR/default/{debian,memtest}/.empty - ( cd $BOOTLESS_DIR && ln -s . boot) + #( cd $BOOTLESS_DIR && ln -s . boot) if [ -f "/boot/memtest86+.bin" ]; then cp /boot/memtest86+.bin $BOOTLESS_DIR/default/memtest |