diff options
author | Marvin Borner | 2021-07-13 19:46:13 +0200 |
---|---|---|
committer | Marvin Borner | 2021-07-13 19:46:13 +0200 |
commit | c9b5256eb58fd4dce5b027c1a2aadaaf2638c33b (patch) | |
tree | 871dd1de7378f22f69c7009e44c7ac7e88f5d8ea /run | |
parent | 08cd951ea8410bc87e316e6c11d34a118437ba8b (diff) |
Diffstat (limited to 'run')
-rwxr-xr-x | run | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,7 +19,7 @@ build_cross() { echo -n "Do you want to compile a cross compiler (this can take around 20 minutes)? [yn] " read -r answer if ! [ "$answer" != "${answer#[Yy]}" ]; then - echo "The compilation of melvix requires a cross compiler!" + echo "The compilation of SegelBoot requires a cross compiler!" exit 1 fi fi @@ -99,8 +99,8 @@ build() { $SUDO cp example/segelboot.cfg mnt/boot/ $SUDO cp build/examples/* mnt/boot/ - $SUDO cp -r "$HOME"/code/melvix/disk/* mnt/ || true - $SUDO cp -r "$HOME"/code/melvix/build/apps/ mnt/apps/ || true + #$SUDO cp -r "$HOME"/code/melvix/disk/* mnt/ || true + #$SUDO cp -r "$HOME"/code/melvix/build/apps/ mnt/apps/ || true $SUDO umount mnt/ || (sync && $SUDO umount mnt/) rm -rf mnt/ |