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

Commit 2dfe8c4

Browse files
committed
move scripts to scripts/ directory
1 parent e819fc2 commit 2dfe8c4

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/binary.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
- name: Add nightly-x86_64
2626
run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
2727
- name: Install deps
28-
run: ./configure.sh
28+
run: ./scripts/configure.sh
2929
#- name: Build
3030
# run: cargo build --verbose --release
3131
- name: Compress Diskimg
32-
run: ./compress-diskimg.sh
32+
run: ./scripts/compress-diskimg.sh
3333
#- name: Generate SHA256 sum
3434
# run: sha256sum target/x86_64-arch/debug/bootimage-popcorn.bin.zst > sha256sum.txt
3535
- name: Send to Discord

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ We welcome contributions from developers, designers, and enthusiasts who share o
4949

5050
### Building and Running
5151
Before building the kernel, you must first install the required dependencies. To install the dependencies, run the following command:
52-
```./configure.sh```
52+
```./scripts/configure.sh```
5353

5454
To build the kernel, run the following command:
5555
```cargo bootimage```

compress-diskimg.sh scripts/compress-diskimg.sh

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# compresses the popcorn disk image with zstd
33
# using compression level 19
44

5+
# workaround for this now being in the scripts directory
6+
cd ..
7+
58
# check if `zstd` is present
69
if ! command -v zstd; then
710
echo -e "\e[1;31merror:\e[0m command \"zstd\" is not present" 1>&2;
@@ -28,6 +31,7 @@ echo "";
2831

2932
echo -e "\e[1m[INFO]\e[0m building disk image...";
3033
echo -e "\e[1m[\e[1;36mEXEC\e[0m\e[1m]\e[0m cargo -v bootimage -v";
34+
3135
# build the bootimage with verbose output
3236
cargo -v bootimage -v;
3337

configure.sh scripts/configure.sh

File renamed without changes.

0 commit comments

Comments
 (0)