Skip to content

Commit

Permalink
fix: missing endif and remove extra endif (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
wiggin77 authored Feb 3, 2025
1 parent 78e30fb commit a3d4962
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ webapp: webapp/node_modules
ifneq ($(HAS_WEBAPP),)
ifeq ($(MM_DEBUG),)
cd webapp && $(NPM) run build;
else
cd webapp && $(NPM) run debug;
endif
endif

## Builds the webapp in debug mode, if it exists.
Expand All @@ -246,7 +249,6 @@ else ifeq ($(OS),Windows_NT)
cd server && env GOOS=windows GOARCH=amd64 $(GOBUILD) -gcflags "all=-N -l" -o dist/plugin-windows-amd64.exe;
else
cd webapp && $(NPM) run debug;
endif
endif
rm -rf dist/
mkdir -p dist/$(PLUGIN_ID)/server/dist
Expand Down

0 comments on commit a3d4962

Please sign in to comment.