Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
fix: only get first portion of image_name
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonN3 committed Feb 21, 2024
1 parent 5e5ce9e commit a988f74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARCH = x86_64
VERSION = 39
IMAGE_REPO = ghcr.io/ublue-os
IMAGE_NAME = base-main
IMAGE_TAG = $(version)
IMAGE_TAG = $(VERSION)
VARIANT = Kinoite
WEB_UI = false

Expand All @@ -13,7 +13,7 @@ WEB_UI = false
_BASE_DIR = $(shell pwd)
_IMAGE_REPO_ESCAPED = $(subst /,\/,$(IMAGE_REPO))
_IMAGE_REPO_DOUBLE_ESCAPED = $(subst \,\\\,$(_IMAGE_REPO_ESCAPED))
_VOLID = $(IMAGE_NAME:-%=)-$(ARCH)-$(IMAGE_TAG)
_VOLID = $(firstword $(subst -, ,$(IMAGE_NAME)))-$(ARCH)-$(IMAGE_TAG)

ifeq ($(VARIANT),'Server')
_LORAX_ARGS = --macboot --noupgrade
Expand Down

0 comments on commit a988f74

Please sign in to comment.