Skip to content

Commit

Permalink
Merge pull request #25 from DanielcoderX/main
Browse files Browse the repository at this point in the history
fixed MakeFile
  • Loading branch information
uoosef authored Aug 10, 2023
2 parents 0b427e8 + 53fe834 commit 0f0d995
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bepass/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ release: create_dirs

gui: create_dirs
@echo "Building GUI version..."
go build $(BUILD_DIR)/bepass-gui cmd/gui/gui.go
go build -o $(BUILD_DIR)/bepass-gui cmd/gui/gui.go

gui-release: create_dirs
@echo "Building GUI Release Version..."
go build $(BUILD_DIR)/bepass-gui cmd/gui/gui.go
go build -ldflags '-s -w' -o $(BUILD_DIR)/bepass-gui cmd/gui/gui.go

test: build
@echo "Running tests..."
Expand Down

0 comments on commit 0f0d995

Please sign in to comment.