1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 00:09:16 +08:00

fix: typo in makefile (#7327)

This commit is contained in:
Meng Zhuo 2024-12-11 16:07:26 +08:00 committed by GitHub
parent f5de005ad7
commit c2dadc2b92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,13 +4,13 @@ GOCLEAN=$(GOCMD) clean
GOARCH=$(shell go env GOARCH) GOARCH=$(shell go env GOARCH)
GOOS=$(shell go env GOOS) GOOS=$(shell go env GOOS)
BASE_PAH := $(shell pwd) BASE_PATH := $(shell pwd)
BUILD_PATH = $(BASE_PAH)/build BUILD_PATH = $(BASE_PATH)/build
WEB_PATH=$(BASE_PAH)/frontend WEB_PATH=$(BASE_PATH)/frontend
SERVER_PATH=$(BASE_PAH)/backend SERVER_PATH=$(BASE_PATH)/backend
MAIN= $(BASE_PAH)/cmd/server/main.go MAIN= $(BASE_PATH)/cmd/server/main.go
APP_NAME=1panel APP_NAME=1panel
ASSERT_PATH= $(BASE_PAH)/cmd/server/web/assets ASSERT_PATH= $(BASE_PATH)/cmd/server/web/assets
clean_assets: clean_assets:
rm -rf $(ASSERT_PATH) rm -rf $(ASSERT_PATH)