Skip to content

Commit

Permalink
Merge pull request #22 from josegonzalez/master
Browse files Browse the repository at this point in the history
Release 0.8.2
  • Loading branch information
josegonzalez authored May 9, 2020
2 parents 0a44dd2 + 47046c9 commit 38248fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
REPOSITORY = go-procfile-util
HARDWARE = $(shell uname -m)
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
BASE_VERSION ?= 0.8.1
BASE_VERSION ?= 0.8.2
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func expandEnv(e procfileEntry, envPath string, allowEnv bool, defaultPort int)
return os.Getenv("PS")
}
if key == portEnvVar {
return string(defaultPort)
return strconv.Itoa(defaultPort)
}
return ""
}
Expand Down

0 comments on commit 38248fe

Please sign in to comment.