From a912fbc5b93b10c4ace16ff7740e6a29ba831ad3 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Mon, 23 Sep 2024 11:55:51 -0700 Subject: [PATCH] Fix posix-oneshot example directory name (#260) 875977a changed the name of the directory containing leaves but failed to make the change throughout the file. This commit updates the remaining command examples with the new name. --- cmd/examples/posix-oneshot/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/examples/posix-oneshot/README.md b/cmd/examples/posix-oneshot/README.md index dbc5b846..a883a645 100644 --- a/cmd/examples/posix-oneshot/README.md +++ b/cmd/examples/posix-oneshot/README.md @@ -22,7 +22,7 @@ echo "bar" > /tmp/stuff/bar echo "baz" > /tmp/stuff/baz # Integrate all of these leaves into the tree -go run ./cmd/examples/posix-oneshot --storage_dir=${LOG_DIR} --entries="/tmp/logleaves/*" +go run ./cmd/examples/posix-oneshot --storage_dir=${LOG_DIR} --entries="/tmp/stuff/*" # Check that the checkpoint is of the correct size and the leaves are present cat ${LOG_DIR}/checkpoint @@ -32,7 +32,7 @@ cat ${LOG_DIR}/tile/entries/000.p/* go run github.com/mhutchinson/woodpecker@main --custom_log_type=tiles --custom_log_url=file:///${LOG_DIR}/ --custom_log_origin=example.com/log/testdata --custom_log_vkey=${LOG_PUBLIC_KEY} # More entries can be added to the log using the following: -go run ./cmd/examples/posix-oneshot --storage_dir=${LOG_DIR} --entries="/tmp/logleaves/*" +go run ./cmd/examples/posix-oneshot --storage_dir=${LOG_DIR} --entries="/tmp/stuff/*" ``` ## Using the log