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

Commit

Permalink
Merge pull request #69 from popcorn-kernel/move-scripts
Browse files Browse the repository at this point in the history
move scripts to scripts/ directory
  • Loading branch information
SatoTsukasaCode authored Oct 23, 2023
2 parents e819fc2 + 8ed3aa7 commit 28c22de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
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.

0 comments on commit 28c22de

Please sign in to comment.