diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-11-11 07:01:04 -0800 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-11-14 20:10:39 +0000 |
commit | 4b621b0cb35a5c572514c77fbe09661c8e65517c (patch) | |
tree | 9ea9af3b4147081141a78ba78e3142cdd0ebf035 /scripts | |
parent | d32a167e7927b169108cdf21067e80e1650a6e2d (diff) | |
download | aports-4b621b0cb35a5c572514c77fbe09661c8e65517c.tar.bz2 aports-4b621b0cb35a5c572514c77fbe09661c8e65517c.tar.xz |
scripts/mkimage.sh: make sure outdir exists
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mkimage.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mkimage.sh b/scripts/mkimage.sh index 6ad9200434..983a2ec47d 100644 --- a/scripts/mkimage.sh +++ b/scripts/mkimage.sh @@ -219,6 +219,8 @@ req_arch=${req_arch:-${default_arch}} [ "$req_arch" != "all" ] || req_arch="${all_arch}" [ "$req_profiles" != "all" ] || req_profiles="${all_profiles}" +mkdir -p "$OUTDIR" + # get abuild pubkey used to sign the apkindex # we need inject this to the initramfs or we will not be able to use the # boot repository |