Browse Source

fix get OS on some of the windows computers (#16007)

tags/v1.15.0-rc1
BoYanZh 4 years ago committed by GitHub
parent
commit
fb6c6895fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      Makefile

3
Makefile

@ -43,6 +43,9 @@ endif
ifeq ($(OS), Windows_NT)
GOFLAGS := -v -buildmode=exe
EXECUTABLE ?= gitea.exe
else ifeq ($(OS), Windows)
GOFLAGS := -v -buildmode=exe
EXECUTABLE ?= gitea.exe
else
GOFLAGS := -v
EXECUTABLE ?= gitea

Loading…
Cancel
Save