Browse Source

docs: single line win deploy (#18994)

Ilya Mashchenko 4 months ago
parent
commit
4ef8109216
1 changed files with 2 additions and 2 deletions
  1. 2 2
      integrations/deploy.yaml

+ 2 - 2
integrations/deploy.yaml

@@ -577,12 +577,12 @@
     - method: Silent Mode (Command line)
       commands:
         - channel: stable
-          command: |
+          command: >
             $ProgressPreference = 'SilentlyContinue';
             Invoke-WebRequest https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi -OutFile "netdata-x64.msi";
             msiexec /qn /i netdata-x64.msi {% if $showClaimingOptions %}TOKEN={% claim_token %} ROOMS={% $claim_rooms %}{% /if %}
         - channel: nightly
-          command: |
+          command: >
             $ProgressPreference = 'SilentlyContinue';
             Invoke-WebRequest https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-x64.msi -OutFile "netdata-x64.msi";
             .\msiexec /qn /i netdata-x64.msi {% if $showClaimingOptions %}/TOKEN={% claim_token %} /ROOMS={% $claim_rooms %}{% /if %}