mirror of
https://github.com/block/goose.git
synced 2026-04-28 03:29:36 +00:00
fix just (#2849)
This commit is contained in:
parent
cb6a819de4
commit
511c18f600
1 changed files with 14 additions and 2 deletions
16
Justfile
16
Justfile
|
|
@ -66,7 +66,13 @@ copy-binary BUILD_MODE="release":
|
|||
echo "temporal-service binary not found. Building it..."; \
|
||||
cd temporal-service && ./build.sh && cp -p temporal-service ../ui/desktop/src/bin/; \
|
||||
fi
|
||||
@./copy-temporal-binary.sh
|
||||
@echo "Checking temporal CLI binary..."
|
||||
@if [ ! -f ./ui/desktop/src/bin/temporal ]; then \
|
||||
echo "temporal CLI binary not found in ui/desktop/src/bin/"; \
|
||||
echo "Please ensure temporal CLI is available or will be downloaded at runtime"; \
|
||||
else \
|
||||
echo "temporal CLI binary found"; \
|
||||
fi
|
||||
|
||||
# Copy binary command for Intel build
|
||||
copy-binary-intel:
|
||||
|
|
@ -84,7 +90,13 @@ copy-binary-intel:
|
|||
echo "temporal-service binary not found. Building it..."; \
|
||||
cd temporal-service && ./build.sh && cp -p temporal-service ../ui/desktop/src/bin/; \
|
||||
fi
|
||||
@./copy-temporal-binary.sh
|
||||
@echo "Checking temporal CLI binary..."
|
||||
@if [ ! -f ./ui/desktop/src/bin/temporal ]; then \
|
||||
echo "temporal CLI binary not found in ui/desktop/src/bin/"; \
|
||||
echo "Please ensure temporal CLI is available or will be downloaded at runtime"; \
|
||||
else \
|
||||
echo "temporal CLI binary found"; \
|
||||
fi
|
||||
|
||||
# Copy Windows binary command
|
||||
copy-binary-windows:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue