diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-10-17 14:44:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-10-17 14:44:26 +0000 |
commit | e58bd7992d0d7b657f02561eb4c255bdfe6751d6 (patch) | |
tree | d2eba5d882482e5c6f6c5cb0a385b43517fa8055 /scripts | |
parent | bcdd7529cb16a299ea2f31e6a839ca777b78d7a6 (diff) | |
download | aports-e58bd7992d0d7b657f02561eb4c255bdfe6751d6.tar.bz2 aports-e58bd7992d0d7b657f02561eb4c255bdfe6751d6.tar.xz |
scripts/genrootfs.sh: fix permissions of / in minirootfs
ref #9066
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/genrootfs.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/genrootfs.sh b/scripts/genrootfs.sh index 2c2c938a06..72f2c8f9e4 100755 --- a/scripts/genrootfs.sh +++ b/scripts/genrootfs.sh @@ -6,6 +6,7 @@ cleanup() { tmp="$(mktemp -d)" trap cleanup EXIT +chmod 0755 "$tmp" arch="$(apk --print-arch)" repositories_file=/etc/apk/repositories |