Skip to content

Commit

Permalink
fix email app
Browse files Browse the repository at this point in the history
  • Loading branch information
gogo2464 committed Jan 28, 2024
1 parent b75a1cb commit d3b4f1b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
12 changes: 8 additions & 4 deletions apps/freenet-email-app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ AFT_GENERATOR := $(FREENET_DIR)/modules/antiflood-tokens/delegates/token-generat
IDENTITY_DELEGATE := $(FREENET_DIR)/modules/identity-management
WEB_DIR_SRC := $(FREENET_DIR)/apps/freenet-email-app/web/src

IDENTITY_DELEGATE_PRIVATE_KEY := identity-manager-key.private.pem
PATH_TO_IDENTITY_DELEGATE := $(IDENTITY_DELEGATE)/build/$(IDENTITY_DELEGATE_PRIVATE_KEY)


ifeq ($(CARGO_TARGET_DIR),)
$(error CARGO_TARGET_DIR is not set)
endif
Expand All @@ -31,10 +35,10 @@ build-tool:
cargo install --force --path $(FREENET_DIR)/crates/fdev

generate-id-manager-key:
FILE="$(IDENTITY_DELEGATE)/build/identity-manager-key.private.pem"
echo $$FILE ;
ifneq ("$(wildcard $(FILE))","")
cd $(IDENTITY_DELEGATE) && cargo run -- --path "$(IDENTITY_DELEGATE)/build/" ;
ifeq ("$(wildcard $(PATH_TO_IDENTITY_DELEGATE))", "$(IDENTITY_DELEGATE_PRIVATE_KEY)")
echo "file $(IDENTITY_DELEGATE_PRIVATE_KEY) already exists. Skipping." ;
else
cd $(IDENTITY_DELEGATE) && cargo run -- --path "$(IDENTITY_DELEGATE)/build/" ;
endif

build-inbox:
Expand Down
5 changes: 2 additions & 3 deletions build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ cd ../.. &&
cargo install --path crates/core --force &&
cargo install --path crates/fdev --force &&
cd ./modules/identity-management/ && make build &&
cd ../antiflood-tokens/ &&
rm Cargo.lock ;
make build &&
cd ../antiflood-tokens/ && rm Cargo.lock ; make build &&
cd ../../apps/freenet-microblogging && make build &&
echo "TEST" ;
cd ../../apps/freenet-email-app && make build

0 comments on commit d3b4f1b

Please sign in to comment.