From f82bc7c40fb3e33095228bd53abe5bd365a0812c Mon Sep 17 00:00:00 2001 From: 23xvx Date: Sat, 30 Mar 2024 12:32:09 +0800 Subject: [PATCH] Fix typo --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 087a334..66e3540 100755 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,7 +32,7 @@ here: **do_mount()**: mounts the rootfs directories in recursive after checking is directories already mounted -> takes one argument: location of rootfs directory +> takes one argument: `location of rootfs directory` ```bash do_mount "/path/to/fs" @@ -49,13 +49,13 @@ do_build "out/udroid-test" "arm64" **do_compress**() compress the rootfs directory into an archive -> takes one argument: name of rootfs directory +> takes one argument: `location of rootfs directory` ```bash # archiving into .tar.gz OVERRIDER_COMPRESSION_TYPE="gzip" -# already default to "out/" directory -do_compress "udroid-test" +# compressing udroid-test directory +do_compress "out/udroid-test" # output would be "out/udroid-test.tar.gz" ``` > default format is `bzip` ( .tar.xz )