More errors messages (#353)

Add more error messages for HTTP errors/SSL errors
This commit is contained in:
cooolgamer
2026-03-04 15:04:15 +01:00
committed by GitHub
parent 69e0edffb4
commit 5e76d04eb0
4 changed files with 51 additions and 6 deletions

View File

@@ -75,6 +75,12 @@ ifeq ($(strip $(NOGIT)),)
VERSION_MINOR := $(shell echo $(VERSION) | cut -c2- | cut -f1 -d- | cut -f2 -d.)
VERSION_BUILD := $(shell echo $(VERSION) | cut -c2- | cut -f1 -d- | cut -f3 -d.)
ifeq ($(strip $(VERSION_MAJOR)),)
VERSION_MAJOR := 0
endif
ifeq ($(strip $(VERSION_MINOR)),)
VERSION_MINOR := 0
endif
ifeq ($(strip $(VERSION_BUILD)),)
VERSION_BUILD := 0
endif