Reasonable installPhase for preparePort

This commit is contained in:
Ehmry - 2019-07-04 15:19:10 +02:00
parent df3e9c32e5
commit d7e545ac13
1 changed files with 3 additions and 3 deletions

View File

@ -1000,11 +1000,11 @@ checkPhase() {
installPhase() {
runHook preInstall
if [ -n "$prefix" ]; then
mkdir -p "$prefix"
if [ -n "$source" ]; then
mkdir -p "$source"
fi
cp -r ./* "$prefix"
cp -r ./* "$source"
runHook postInstall
}