Parcourir la source

Fix permission of installed definitinos

pull/113/head
Yamashita Yuu il y a 12 ans
Parent
révision
e58ac666c4
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. +7
    -1
      plugins/python-build/install.sh

+ 7
- 1
plugins/python-build/install.sh Voir le fichier

@ -17,4 +17,10 @@ SHARE_PATH="${PREFIX}/share/python-build"
mkdir -p "$BIN_PATH" "$SHARE_PATH"
install -p bin/* "$BIN_PATH"
cp -RPp share/python-build/* "$SHARE_PATH"
for share in share/python-build/*; do
if [ -d "$share" ]; then
cp -RPp "$share" "$SHARE_PATH"
else
install -p -m 0644 "$share" "$SHARE_PATH"
fi
done

Chargement…
Annuler
Enregistrer