Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ARG VERSION_ARG="latest"
FROM scratch AS build-amd64

COPY --from=qemux/qemu:7.44 / /
COPY --from=qemux/qemu:7.45 / /

ARG TARGETARCH

Expand Down
18 changes: 0 additions & 18 deletions src/image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1417,24 +1417,6 @@ detectESDImage() {
return 0
}

baseDir() {

# TODO: Can be removed with base image 7.45+

local path="${1%/}"

[[ -z "$path" || "$path" == "/" ]] && {
echo "/"
return 0
}

path="${path#/}"
path="${path%%/*}"

echo "/$path"
return 0
}

checkFreeSpace() {

local dir="$1"
Expand Down