Skip to content

Commit

Permalink
fix: permission from pip installation (#30)
Browse files Browse the repository at this point in the history
Signed-off-by: l.feng <[email protected]>
  • Loading branch information
msclock authored Dec 2, 2024
1 parent 49c093a commit dcd7c37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@
],
"postUpgradeTasks": {
"commands": [
"apt update && apt install python3-pip -y",
"git stash",
"pip install copier==9.4.1",
"apt update",
"apt install python3-pip -y",
"pip install copier==9.4.1 --break-system-packages",
"copier update --defaults --vcs-ref {{{newVersion}}}"
]
},
Expand Down
5 changes: 3 additions & 2 deletions template/.renovaterc.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@
],
"postUpgradeTasks": {
"commands": [
"apt update && apt install python3-pip -y",
"git stash",
"pip install copier==9.4.1",
"apt update",
"apt install python3-pip -y",
"pip install copier==9.4.1 --break-system-packages",
"copier update --defaults --vcs-ref {{ '{{{newVersion}}}' }}"
]
},
Expand Down

0 comments on commit dcd7c37

Please sign in to comment.