Compare commits

..

5 Commits

Author SHA1 Message Date
MickLesk
cf3998a864 omnitools: drop the unneeded prepare-hook removal 2026-09-07 10:22:16 +02:00
MickLesk
700989ad60 omnitools: allow the remote xlsx tarball pinned in the lockfile 2026-09-07 10:20:07 +02:00
MickLesk
b8d7f05c61 omnitools: drop husky prepare hook before npm ci 2026-09-07 09:59:22 +02:00
community-scripts-pr-app[bot]
da6bccfe25 Update CHANGELOG.md (#17063)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-09-06 21:01:12 +00:00
Jari Huttunen
82562fb20d Fix Sonarqube update script to add +x on sonar.sh (#17056) 2026-09-06 23:00:47 +02:00
4 changed files with 9 additions and 2 deletions

View File

@@ -542,6 +542,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
## 2026-09-06
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- Fix Sonarqube update script to add +x on sonar.sh [@jarihu](https://github.com/jarihu) ([#17056](https://github.com/community-scripts/ProxmoxVE/pull/17056))
## 2026-09-05
### 🚀 Updated Scripts

View File

@@ -40,7 +40,7 @@ function update_script() {
msg_info "Building OmniTools"
cd /opt/omnitools
export HUSKY=0
$STD npm ci
$STD npm ci --allow-remote=all
$STD npm run build
msg_ok "Built OmniTools"

View File

@@ -54,6 +54,7 @@ function update_script() {
cp -rp ${BACKUP_DIR}/extensions/ /opt/sonarqube/extensions/
cp -p ${BACKUP_DIR}/conf/sonar.properties /opt/sonarqube/conf/sonar.properties
rm -rf ${BACKUP_DIR}
chmod +x /opt/sonarqube/bin/linux-x86-64/sonar.sh
chown -R sonarqube:sonarqube /opt/sonarqube
msg_ok "Restored Backup"

View File

@@ -23,7 +23,7 @@ fetch_and_deploy_gh_release "omnitools" "iib0011/omni-tools" "tarball"
msg_info "Building OmniTools"
cd /opt/omnitools
export HUSKY=0
$STD npm ci
$STD npm ci --allow-remote=all
$STD npm run build
msg_ok "Built OmniTools"