Skip to content

Commit c2dadc2

Browse files
authored
fix: typo in makefile (#7327)
1 parent f5de005 commit c2dadc2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ GOCLEAN=$(GOCMD) clean
44
GOARCH=$(shell go env GOARCH)
55
GOOS=$(shell go env GOOS)
66

7-
BASE_PAH := $(shell pwd)
8-
BUILD_PATH = $(BASE_PAH)/build
9-
WEB_PATH=$(BASE_PAH)/frontend
10-
SERVER_PATH=$(BASE_PAH)/backend
11-
MAIN= $(BASE_PAH)/cmd/server/main.go
7+
BASE_PATH := $(shell pwd)
8+
BUILD_PATH = $(BASE_PATH)/build
9+
WEB_PATH=$(BASE_PATH)/frontend
10+
SERVER_PATH=$(BASE_PATH)/backend
11+
MAIN= $(BASE_PATH)/cmd/server/main.go
1212
APP_NAME=1panel
13-
ASSERT_PATH= $(BASE_PAH)/cmd/server/web/assets
13+
ASSERT_PATH= $(BASE_PATH)/cmd/server/web/assets
1414

1515
clean_assets:
1616
rm -rf $(ASSERT_PATH)

0 commit comments

Comments
 (0)