diff --git a/.github/workflows/binary.yml b/.github/workflows/binary.yml index ca3d986..68323f7 100644 --- a/.github/workflows/binary.yml +++ b/.github/workflows/binary.yml @@ -25,11 +25,11 @@ jobs: - name: Add nightly-x86_64 run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu - name: Install deps - run: ./configure.sh + run: ./scripts/configure.sh #- name: Build # run: cargo build --verbose --release - name: Compress Diskimg - run: ./compress-diskimg.sh + run: ./scripts/compress-diskimg.sh #- name: Generate SHA256 sum # run: sha256sum target/x86_64-arch/debug/bootimage-popcorn.bin.zst > sha256sum.txt - name: Send to Discord diff --git a/README.md b/README.md index 72cf13c..d482202 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ We welcome contributions from developers, designers, and enthusiasts who share o ### Building and Running Before building the kernel, you must first install the required dependencies. To install the dependencies, run the following command: -```./configure.sh``` +```./scripts/configure.sh``` To build the kernel, run the following command: ```cargo bootimage``` diff --git a/compress-diskimg.sh b/scripts/compress-diskimg.sh similarity index 99% rename from compress-diskimg.sh rename to scripts/compress-diskimg.sh index 61cb158..893e89c 100755 --- a/compress-diskimg.sh +++ b/scripts/compress-diskimg.sh @@ -28,6 +28,7 @@ echo ""; echo -e "\e[1m[INFO]\e[0m building disk image..."; echo -e "\e[1m[\e[1;36mEXEC\e[0m\e[1m]\e[0m cargo -v bootimage -v"; + # build the bootimage with verbose output cargo -v bootimage -v; diff --git a/configure.sh b/scripts/configure.sh similarity index 100% rename from configure.sh rename to scripts/configure.sh