Skip to content

Commit

Permalink
adjust makefile
Browse files Browse the repository at this point in the history
Signed-off-by: jkoberg <[email protected]>
  • Loading branch information
kobergj committed Mar 9, 2023
1 parent b3bd2dc commit cfca9ec
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion services/userlog/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,17 @@ ci-go-generate: $(MOCKERY) # CI runs ci-node-generate automatically before this
ci-node-generate:

############ translations ########
include ../../.make/l10n.mk
.PHONY: l10n-pull
l10n-pull:
cd $(OUTPUT_DIR) && tx pull -a --skip --minimum-perc=75

.PHONY: l10n-push
l10n-push:
cd $(OUTPUT_DIR) && tx push -s --skip

.PHONY: l10n-read
l10n-read:
go-xgettext -o $(OUTPUT_DIR)/locale/en/LC_MESSAGES/default.pot --keyword=Template -s pkg/service/templates.go

############ licenses ############
.PHONY: ci-node-check-licenses
Expand Down
2 changes: 1 addition & 1 deletion services/userlog/pkg/service/conversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Converter struct {
serviceName string
registeredEvents map[string]events.Unmarshaller

// cached within one request not query other service too much
// cached within one request not to query other service too much
spaces map[string]*storageprovider.StorageSpace
users map[string]*user.User
resources map[string]*storageprovider.ResourceInfo
Expand Down

0 comments on commit cfca9ec

Please sign in to comment.