From 4e25bd96e15f3e080b14115cb44339fc34cd6327 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Wed, 23 Oct 2024 07:43:59 -0400 Subject: [PATCH] Rename volume to be consistent --- Usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Usage.md b/Usage.md index 8a77d6d..40b5357 100644 --- a/Usage.md +++ b/Usage.md @@ -25,7 +25,7 @@ to build Arch Linux packages. 1. Run the container: ```sh - podman run --rm -v ./my-pkg:/pkg:ro -v ./build:/build code.fosterhangdaan.com/foster/arch-packaging-container:latest + podman run --rm -v ./pkg:/pkg:ro -v ./build:/build code.fosterhangdaan.com/foster/arch-packaging-container:latest ``` When the build is finished, the compressed package will be stored in @@ -44,5 +44,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/arch-packaging-container:latest + podman run --rm -v ./pkg:/pkg:ro -v ./build:/build -v cargo:/home/builder/.cargo code.fosterhangdaan.com/foster/arch-packaging-container:latest ```