Skip to content

Commit

Permalink
Merge pull request #192 from crazy-max/fix-mkdir
Browse files Browse the repository at this point in the history
xx-apk: fix mkdir
  • Loading branch information
tonistiigi authored Dec 11, 2024
2 parents 1482e53 + a867be9 commit f8a662a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xx-apk
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ setup() {
echo "https://dl-cdn.alpinelinux.org/alpine/v3.20/main" >"$apk_dir/repositories"
echo "https://dl-cdn.alpinelinux.org/alpine/v3.20/community" >>"$apk_dir/repositories"
fi
mkdir "$apk_dir/keys"
mkdir "$apk_dir/protected_paths.d"
mkdir -p "$apk_dir/keys"
mkdir -p "$apk_dir/protected_paths.d"
echo "$XX_PKG_ARCH" >"$apk_dir/arch"
apk add --no-cache --initdb -p "/${XX_TRIPLE}" --allow-untrusted alpine-keys

Expand Down

0 comments on commit f8a662a

Please sign in to comment.