mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
Merge pull request #100 from dockcross/manylinux-change-ownership-of-man-and-share-dirs
manylinux-common: Fix pip install change ownership of "man" and "share" dir
This commit is contained in:
commit
53c068c8a4
@ -6,3 +6,10 @@ done
|
||||
for DIR in /opt/python/*/bin; do
|
||||
chown -R $BUILDER_UID:$BUILDER_GID $DIR
|
||||
done
|
||||
for DIR in /opt/python/*; do
|
||||
mkdir $DIR/man
|
||||
chown -R $BUILDER_UID:$BUILDER_GID $DIR/man
|
||||
done
|
||||
for DIR in /opt/python/*/share; do
|
||||
chown -R $BUILDER_UID:$BUILDER_GID $DIR
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user