Skip to content

Commit

Permalink
Use browserService in more places in .drone.star
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Oct 20, 2022
1 parent 65d2e09 commit 86860f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -1952,11 +1952,11 @@ def fixPermissions(phpVersion, federatedServerNeeded, selUserNeeded = False):
] + ([
"chown -R www-data %s" % dir["federated"],
] if federatedServerNeeded else []) + ([
"chmod 777 /home/seluser/Downloads/",
"chmod 777 %s" % dir["browserService"],
] if selUserNeeded else []),
"volumes": [{
"name": "downloads",
"path": "/home/seluser/Downloads/",
"path": dir["browserService"],
}],
}]

Expand Down

0 comments on commit 86860f2

Please sign in to comment.