Compare commits

...

2 Commits

Author SHA1 Message Date
tteckster 409936a9fc
Update README.md 2024-10-29 11:51:45 -04:00
Jacob eceb52a67a
Change update script (#4005)
Change update script to make sure that it overwrites all the local changes in the local browserless git folder
2024-10-29 09:45:40 -04:00
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
<div style="border: 2px solid #d1d5db; padding: 20px; border-radius: 8px; background-color: #f9fafb;">
<h2 align="center">Proxmox VE Helper-Scripts Project Update</h2>
<p>Dear Community,</p>
<p>I wanted to share a personal update. Ive recently transitioned into hospice care and, as a result, will be slowing down the development of this project. While Im grateful for the progress weve made together, I recognize that Ill be taking a step back for some rest and reflection during this time.</p>
<p>Thank you for your continued support, encouragement, and understanding. Your dedication to the community and this project means the world to me, and I am grateful for each of you.</p>
<p>Warm regards,<br>tteck/tteckster</p>
</div>
<div align="center"> <div align="center">
<a href="#"> <a href="#">
<img src="https://raw.githubusercontent.com/tteck/Proxmox/main/misc/images/logo.png" height="100px" /> <img src="https://raw.githubusercontent.com/tteck/Proxmox/main/misc/images/logo.png" height="100px" />

View File

@ -63,7 +63,8 @@ fi
pip3 install changedetection.io --upgrade &>/dev/null pip3 install changedetection.io --upgrade &>/dev/null
pip3 install playwright --upgrade &>/dev/null pip3 install playwright --upgrade &>/dev/null
if [[ -f /etc/systemd/system/browserless.service ]]; then if [[ -f /etc/systemd/system/browserless.service ]]; then
git -C /opt/browserless/ pull &>/dev/null git -C /opt/browserless/ fetch --all &>/dev/null
git -C /opt/browserless/ reset --hard origin/main &>/dev/null
npm update --prefix /opt/browserless &>/dev/null npm update --prefix /opt/browserless &>/dev/null
npm run build --prefix /opt/browserless &>/dev/null npm run build --prefix /opt/browserless &>/dev/null
npm run build:function --prefix /opt/browserless &>/dev/null npm run build:function --prefix /opt/browserless &>/dev/null