fix_: make generate command

This commit is contained in:
Igor Sirotin 2024-09-24 22:52:02 +01:00
parent 23252579de
commit ef9279df63
No known key found for this signature in database
GPG Key ID: 425E227CAAB81F95
1 changed files with 2 additions and 4 deletions

View File

@ -313,10 +313,8 @@ setup-dev:
echo "Replaced by Nix shell. Use 'make shell' or just any target as-is." echo "Replaced by Nix shell. Use 'make shell' or just any target as-is."
generate: generate:
packages=$(call sh, go list ./... | grep -v "./contracts") @packages=$$(go list ./... | grep -v "./contracts"); \
go generate $packages go generate $$packages
#go generate ./static ./static/mailserver_db_migrations ./t ./multiaccounts/... ./appdatabase/... ./protocol/... ./walletdatabase/... ./_assets/generate_handlers/...
#go generate ./appdatabase/...
download-uniswap-tokens: download-uniswap-tokens:
go run ./services/wallet/token/downloader/main.go go run ./services/wallet/token/downloader/main.go