From 4b7f9ce3d4d1de94e47da1c760e1af9b161b039c Mon Sep 17 00:00:00 2001 From: Hsiao-nan Cheung Date: Wed, 19 Dec 2018 12:55:06 +0800 Subject: [PATCH] nvs: Fix output null (#2914) nvs: Fix output null --- nvs.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvs.json b/nvs.json index 4cc077f23e..fe1e6d2d9f 100644 --- a/nvs.json +++ b/nvs.json @@ -15,13 +15,13 @@ "NVS_HOME": "$dir\\nodejs" }, "post_install": [ - "powershell -NoProfile -File $dir\\nvs.ps1 remote >> null", + "powershell -NoProfile -File $dir\\nvs.ps1 remote | Out-Null", "$CONF = (Get-Content \"$persist_dir\\nodejs\\settings.json\") | ConvertFrom-Json", "Add-Member -NotePropertyName linkToSystem -NotePropertyValue $false -Force -InputObject $CONF", "ConvertTo-Json $CONF | Out-File -encoding \"ASCII\" \"$persist_dir\\nodejs\\settings.json\"" ], "uninstaller": { - "script": "nvs unlink >> null" + "script": "nvs unlink | Out-Null" }, "checkver": "github", "autoupdate": {