From 9f04bc6d1af4bb70512fc1f09c911c8c0a060401 Mon Sep 17 00:00:00 2001 From: Nathan Weinberg <31703736+nathan-weinberg@users.noreply.github.com> Date: Thu, 10 Jul 2025 16:14:10 -0400 Subject: [PATCH] chore: move "install.sh" script into "scripts" dir (#2719) # What does this PR do? "install.sh" is something that a general user might not use e.g. it is specific to using the "ollama" inference provider cleanup the top-level structure of the repo by moving it into the "scripts" dir and updating the relevant references accordingly Signed-off-by: Nathan Weinberg --- .github/workflows/install-script-ci.yml | 8 ++++---- README.md | 2 +- install.sh => scripts/install.sh | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename install.sh => scripts/install.sh (100%) diff --git a/.github/workflows/install-script-ci.yml b/.github/workflows/install-script-ci.yml index 2eb234c77..d711444e8 100644 --- a/.github/workflows/install-script-ci.yml +++ b/.github/workflows/install-script-ci.yml @@ -3,10 +3,10 @@ name: Installer CI on: pull_request: paths: - - 'install.sh' + - 'scripts/install.sh' push: paths: - - 'install.sh' + - 'scripts/install.sh' schedule: - cron: '0 2 * * *' # every day at 02:00 UTC @@ -16,11 +16,11 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - name: Run ShellCheck on install.sh - run: shellcheck install.sh + run: shellcheck scripts/install.sh smoke-test: needs: lint runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - name: Run installer end-to-end - run: ./install.sh + run: ./scripts/install.sh diff --git a/README.md b/README.md index 1bebf6b19..9148ce05d 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ As more providers start supporting Llama 4, you can use them in Llama Stack as w To try Llama Stack locally, run: ```bash -curl -LsSf https://github.com/meta-llama/llama-stack/raw/main/install.sh | bash +curl -LsSf https://github.com/meta-llama/llama-stack/raw/main/scripts/install.sh | bash ``` ### Overview diff --git a/install.sh b/scripts/install.sh similarity index 100% rename from install.sh rename to scripts/install.sh