From d433e1eab2370724156db5ecf56d4792148cc77e Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Wed, 21 May 2025 13:43:25 -0400 Subject: [PATCH] Move CLI cheatsheet under cli-bin --- .github/workflows/ci.yml | 2 +- README.md | 2 +- cli-bin/build.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 162af20..e2cb486 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: marlin-cli-cheatsheet - path: docs/cli_cheatsheet.md + path: cli-bin/docs/cli_cheatsheet.md if-no-files-found: warn retention-days: 7 diff --git a/README.md b/README.md index 79c66b3..91645ba 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Before a milestone is declared **shipped**: ## CLI Cheatsheet The full command reference is generated during the build of the CLI. See -[docs/cli_cheatsheet.md](docs/cli_cheatsheet.md). +[cli-bin/docs/cli_cheatsheet.md](cli-bin/docs/cli_cheatsheet.md). ## License diff --git a/cli-bin/build.rs b/cli-bin/build.rs index cc319a5..9de4d47 100644 --- a/cli-bin/build.rs +++ b/cli-bin/build.rs @@ -2,7 +2,7 @@ // // Build script to generate the CLI cheatsheet at compile time. It // parses `src/cli/commands.yaml` and emits a simple Markdown table of -// commands and flags to `docs/cli_cheatsheet.md`. +// commands and flags to `cli-bin/docs/cli_cheatsheet.md`. use std::{fs, path::Path};