We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d13bfd5 commit 00fbf44Copy full SHA for 00fbf44
Makefile
@@ -17,7 +17,7 @@ export GIT_VERSION ?= $(shell git rev-parse --short HEAD)
17
# Auto-detect and sanitize current git branch
18
BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD)
19
# Replace "/" and other non-alphanumeric characters with "-"
20
-SAFE_BRANCH := $(shell echo "$(BRANCH)" | sed 's/[^A-Za-z0-9._-]/-/g')
+SAFE_BRANCH := $(shell echo "$(BRANCH)" | sed 's/[^A-Za-z0-9-]/-/g')
21
FORCE_DEPLOY ?= false
22
23
.PHONY: build deploy dev clean install
0 commit comments