We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42e740 commit ae45590Copy full SHA for ae45590
1 file changed
libexec/scoop-bucket.ps1
@@ -39,8 +39,8 @@ function list_buckets {
39
)
40
$updated = 'N/A'
41
if ((Test-Path (Join-Path $source '.git')) -and (Get-Command git -ErrorAction SilentlyContinue)) {
42
- $updated = git -C "`"$source`"" log --format='%aD' -n 1 | Get-Date
43
- $source = git -C "`"$source`"" config remote.origin.url
+ $updated = git -C $source log --format='%aD' -n 1 | Get-Date
+ $source = git -C $source config remote.origin.url
44
} else {
45
$updated = (Get-Item "$source\bucket").LastWriteTime
46
$source = friendly_path $source
0 commit comments