@cryptotaxi247 / netdata-1 / commits / 4ef810921

docs: single line win deploy (#18994)

Ilya Mashchenko committed Nov 12, 2024 at 11:06 UTC 4ef81092160d7b6e1f66a29a922cb8937ffef511
1 file changed +2 -2
integrations/deploy.yaml
+2 -2
@@ -577,12 +577,12 @@
577 - method: Silent Mode (Command line)
578 commands:
579 - channel: stable
580 - command: |
580 + command: >
581 $ProgressPreference = 'SilentlyContinue';
582 Invoke-WebRequest https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi -OutFile "netdata-x64.msi";
583 msiexec /qn /i netdata-x64.msi {% if $showClaimingOptions %}TOKEN={% claim_token %} ROOMS={% $claim_rooms %}{% /if %}
584 - channel: nightly
585 - command: |
585 + command: >
586 $ProgressPreference = 'SilentlyContinue';
587 Invoke-WebRequest https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-x64.msi -OutFile "netdata-x64.msi";
588 .\msiexec /qn /i netdata-x64.msi {% if $showClaimingOptions %}/TOKEN={% claim_token %} /ROOMS={% $claim_rooms %}{% /if %}