Skip to content

Commit

Permalink
Makefile: fix test path error
Browse files Browse the repository at this point in the history
  • Loading branch information
mumumusuc committed Dec 21, 2023
1 parent 3f910d9 commit c70a3ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions engine/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ $(PREBUILT.dart): $(DART_SDK)
$(PREFIX)/bin/%:
@$(error '`$(notdir $@)` not found.')

test: override FLUTTER := $(ROOT)../flutter
test: TARGET := $(ROOT)../flutter
test: release
@$(GIT) -C $(FLUTTER) fetch --tags
@$(GIT) -C $(FLUTTER) checkout $(TAG)
@$(PYTHON) $(ROOT)../install.py -e $(RELEASE.ENGINE) -d $(RELEASE.DART_SDK) $(FLUTTER)
@$(FLUTTER)/bin/flutter doctor
@$(GIT) -C $(TARGET) fetch --tags
@$(GIT) -C $(TARGET) checkout $(TAG)
@$(PYTHON) $(ROOT)../install.py -e $(RELEASE.ENGINE) -d $(RELEASE.DART_SDK) $(TARGET)
@$(TARGET)/bin/flutter doctor

publish: release
@$(ROOT)publish $(TAG) $(RELEASE) $(TOKEN)

0 comments on commit c70a3ef

Please sign in to comment.