Fix examples

Foster Hangdaan 2024-10-22 16:44:27 -04:00
parent 0204933724
commit 1eb394ece9
Signed by: foster
GPG key ID: E48D7F49A852F112

@ -23,7 +23,7 @@ container management tool: [Podman](https://podman.io/) or
1. Run the container:
```sh
podman run --rm -v ./my-pkg:/pkg:ro -v ./build:/build code.fosterhangdaan.com/foster/arch-packaging:latest
podman run --rm -v ./my-pkg:/pkg:ro -v ./build:/build code.fosterhangdaan.com/foster/arch-packaging-container:latest
```
The `my-pkg` folder should contain the `makepkg` files such as `PKGBUILD`
@ -43,5 +43,5 @@ Example for a [Rust](https://www.rust-lang.org/) build environment.
1. Run the container:
```sh
podman run --rm -v ./rust-pkg:/pkg:ro -v ./build:/build -v cargo:/home/builder/.cargo code.fosterhangdaan.com/foster/makepkg-container:latest
podman run --rm -v ./rust-pkg:/pkg:ro -v ./build:/build -v cargo:/home/builder/.cargo code.fosterhangdaan.com/foster/arch-packaging-container:latest
```