From 6f9bac77db27c8aaf27fb5b6925de6da31698e6c Mon Sep 17 00:00:00 2001 From: Salvatore Testa Date: Fri, 27 Jun 2025 16:28:38 +0200 Subject: [PATCH] build: Add `just` to Hermit, correct ui/desktop's README To be able to use the desktop setup, you'll need to have `just` installed. By adding it to Hermit, we can gurantee the developer has it. --- bin/.just-1.40.0.pkg | 1 + bin/just | 1 + ui/desktop/README.md | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 120000 bin/.just-1.40.0.pkg create mode 120000 bin/just diff --git a/bin/.just-1.40.0.pkg b/bin/.just-1.40.0.pkg new file mode 120000 index 000000000000..383f4511d444 --- /dev/null +++ b/bin/.just-1.40.0.pkg @@ -0,0 +1 @@ +hermit \ No newline at end of file diff --git a/bin/just b/bin/just new file mode 120000 index 000000000000..63271c139205 --- /dev/null +++ b/bin/just @@ -0,0 +1 @@ +.just-1.40.0.pkg \ No newline at end of file diff --git a/ui/desktop/README.md b/ui/desktop/README.md index 297fc57f67b0..fe305365cefa 100644 --- a/ui/desktop/README.md +++ b/ui/desktop/README.md @@ -7,8 +7,9 @@ Goose uses [Hermit](https://github.com/cashapp/hermit) to manage dependencies, s ``` git clone git@github.com:block/goose.git +cd goose source ./bin/activate-hermit -cd goose/ui/desktop +cd ui/desktop npm install npm run start ```