We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to reproduce
make build
When running make build, I ran into this issue (I omit some part of the logs for brevity)
➜ dagu git:(main) make build yarn install v1.22.21 [1/4] Resolving packages... [2/4] Fetching packages... [3/4] Linking dependencies... ... rm: cannot remove './service/frontend/assets/*.js': No such file or directory make: *** [Makefile:72: build-ui] Error 1
To solve this, I think we can update the Makefile target build-ui by doing rm -f
build-ui
rm -f
build-ui: @cd ui; \ yarn && yarn build @rm -f ./service/frontend/assets/*.js @rm -f ./service/frontend/assets/*.woff @rm -f ./service/frontend/assets/*.woff2 @cp ui/dist/*.js ./service/frontend/assets/ @cp ui/dist/*.woff ./service/frontend/assets/ @cp ui/dist/*.woff2 ./service/frontend/assets/
https://github.com/dagu-dev/dagu/blob/main/Makefile#L70C1-L80C48
Thx!
The text was updated successfully, but these errors were encountered:
Hi, thanks a lot for submitting the Issue. I completely agree, let's update the Makefile.
Sorry, something went wrong.
let's update the Makefile.
Ok, I will submit a PR
Successfully merging a pull request may close this issue.
How to reproduce
make build
When running
make build
, I ran into this issue (I omit some part of the logs for brevity)To solve this, I think we can update the Makefile target
build-ui
by doingrm -f
https://github.com/dagu-dev/dagu/blob/main/Makefile#L70C1-L80C48
Thx!
The text was updated successfully, but these errors were encountered: