From f23b2bbde57e9c566bbc07e43fdd3f8ccbcf57ca Mon Sep 17 00:00:00 2001 From: Jun Ueoka Date: Fri, 21 Dec 2018 02:46:09 +0900 Subject: [PATCH] install.ps1: Fix lastupdate config value after scoop installation (#2919) Related to #2906 --- bin/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.ps1 b/bin/install.ps1 index 8efc7c785..2464248cb 100644 --- a/bin/install.ps1 +++ b/bin/install.ps1 @@ -56,7 +56,7 @@ shim "$dir\bin\scoop.ps1" $false ensure_robocopy_in_path ensure_scoop_in_path -scoop config lastupdate [System.DateTime]::Now.ToString('o') +scoop config lastupdate ([System.DateTime]::Now.ToString('o')) success 'Scoop was installed successfully!' Write-Output "Type 'scoop help' for instructions."