Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

move scripts to scripts/ directory #69

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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```
Expand Down
1 change: 1 addition & 0 deletions compress-diskimg.sh → scripts/compress-diskimg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
File renamed without changes.
Loading