[release] v0.8.5

This commit is contained in:
Yann Stepienik 2023-06-23 23:27:21 +01:00
parent 6073f74150
commit 867e12400e
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.8.4", "version": "0.8.5",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {

View file

@ -129,7 +129,7 @@ func UpdatePorts(finalPorts []string) error {
version := "latest" version := "latest"
// if arm // if arm
if runtime.GOARCH == "arm" { if runtime.GOARCH == "arm64" {
version = "latest-arm64" version = "latest-arm64"
} }

View file

@ -592,7 +592,7 @@ func SelfRecreate() error {
version := "latest" version := "latest"
// if arm // if arm
if runtime.GOARCH == "arm" { if runtime.GOARCH == "arm64" {
version = "latest-arm64" version = "latest-arm64"
} }