Skip to content

Commit

Permalink
Fix version bug in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
punmechanic committed Nov 7, 2023
1 parent 18b1913 commit 7c2fb08
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ frontend/build/index.html: frontend/node_modules
@test $${FRONTEND_URL?is not set}
@test $${API_URL?is not set}
cd frontend && \
REACT_APP_VERSION='$$(git rev-parse --short HEAD)-$(RELEASE)' \
REACT_APP_VERSION='$(shell git rev-parse --short HEAD)-$(RELEASE)' \
REACT_APP_API_URL=${API_URL} \
REACT_APP_DOCUMENTATION_URL=${REACT_APP_DOCUMENTATION_URL} \
REACT_APP_CLIENT=webUI npm run-script build
npm run-script build

### CLI Build Targets
cli/keyconjurer-linux-arm64 cli/keyconjurer-linux:
Expand Down

0 comments on commit 7c2fb08

Please sign in to comment.