Skip to content

Commit ba43c92

Browse files
Update README.md
1 parent e389707 commit ba43c92

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

README.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
---
3+
24
# Arch Linux Without the Beeps
35

46
This repository provides a customized Arch Linux ISO with the system beeps disabled, ideal for users who prefer a quieter environment.
@@ -37,13 +39,13 @@ Make sure you have Docker installed on your system.
3739
docker build -t arch-iso-builder .
3840
```
3941

40-
3. **Build the ISO in the container**
42+
3. **Build the ISO in the container**:
4143

4244
Build the ISO with this command:
4345

44-
'''bash
46+
```bash
4547
docker run --rm --privileged -v $(pwd):/workdir arch-iso-builder bash -c "mkarchiso -v -w workdir/ -o out/ ."
46-
'''
48+
```
4749

4850
4. **Retrieve the ISO**:
4951

@@ -67,13 +69,6 @@ WORKDIR /workdir
6769
# Copy the entire repository into the container
6870
COPY . .
6971

70-
# Build the Arch ISO
71-
RUN mkarchiso -v -w workdir/ -o out/ .
72-
73-
# Rename the generated ISO to Arch.iso (if only one ISO is generated)
74-
RUN iso_file=$(ls out/*.iso | head -n 1) && \
75-
mv $iso_file out/Arch.iso
76-
7772
# Set the output directory as a volume so you can retrieve the ISO later
7873
VOLUME /workdir/out
7974

@@ -169,7 +164,7 @@ jobs:
169164
tag_name: v${{ steps.date.outputs.date }}-release
170165
release_name: ${{ steps.date.outputs.date }}
171166
body: |
172-
This release contains the Arch Linux ISO built on ${{ steps.date.outputs.date }}
167+
This release contains the Arch Linux ISO built on ${{ steps.date.outputs.date }}.
173168
draft: false
174169
prerelease: false
175170

0 commit comments

Comments
 (0)