Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #252 from fr33ky/master
Browse files Browse the repository at this point in the history
Fix missing space for wget call
  • Loading branch information
rjkernick authored Feb 3, 2021
2 parents d413b96 + 551d004 commit c205d6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/sonarqube/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: sonarqube
description: SonarQube is an open sourced code quality scanning tool
version: 9.4.0
version: 9.4.1
appVersion: 8.5.1-community
keywords:
- coverage
Expand Down
2 changes: 1 addition & 1 deletion charts/sonarqube/templates/install-plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ data:
[ -e {{ .Values.sonarqubeFolder }}/extensions/downloads/* ] && rm {{ .Values.sonarqubeFolder }}/extensions/downloads/*
{{ range $index, $val := .Values.plugins.install }}
echo {{ $val | quote }} >> {{ $.Values.sonarqubeFolder }}/extensions/downloads/list{{ end }}
cat {{ .Values.sonarqubeFolder }}/extensions/downloads/list | xargs -n 1 -P 8 wget --directory-prefix {{ .Values.sonarqubeFolder }}/extensions/downloads --no-verbose {{- if .Values.plugins.noCheckCertificate }}--no-check-certificate{{- end }}
cat {{ .Values.sonarqubeFolder }}/extensions/downloads/list | xargs -n 1 -P 8 wget --directory-prefix {{ .Values.sonarqubeFolder }}/extensions/downloads --no-verbose{{ if .Values.plugins.noCheckCertificate }} --no-check-certificate{{ end }}
rm {{ .Values.sonarqubeFolder }}/extensions/downloads/list
{{- end }}
{{- if .Values.plugins.lib }}
Expand Down

0 comments on commit c205d6e

Please sign in to comment.