mirror of
https://github.com/akiyosi/goneovim.git
synced 2025-06-20 16:15:46 +02:00
Fix typo in Makefile (& instead of &&).
Two rules started with `test -f <file> & <action>`, instead of `test -f <file> && <action>`. The test was therefore useless.
This commit is contained in:
parent
6588ab5d9d
commit
556b272279
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -40,7 +40,7 @@ endif
|
|||
|
||||
|
||||
app: ## Build goneovim
|
||||
@test -f ./editor/moc.go & $(GOQTMOC) desktop ./cmd/goneovim && \
|
||||
@test -f ./editor/moc.go && $(GOQTMOC) desktop ./cmd/goneovim && \
|
||||
go generate && \
|
||||
$(GOQTDEPLOY) build desktop ./cmd/goneovim && \
|
||||
cp -pR runtime $(RUNTIME_DIR)
|
||||
|
@ -100,7 +100,7 @@ darwin: ## Build binaries for MacOS using Vagrant.
|
|||
cp -pR ../../runtime $(DEPLOYMENT_WINDOWS)
|
||||
|
||||
debug: ## Debug runs of the application using delve.
|
||||
@test -f ./editor/moc.go & $(GOQTMOC) desktop ./cmd/goneovim && \
|
||||
@test -f ./editor/moc.go && $(GOQTMOC) desktop ./cmd/goneovim && \
|
||||
cd cmd/goneovim && \
|
||||
dlv debug --output goneovim --build-flags -race -- $(DEBUG_ARGS)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue