Skip to content

Commit ae45590

Browse files
committed
remove escapes
1 parent b42e740 commit ae45590

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libexec/scoop-bucket.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ function list_buckets {
3939
)
4040
$updated = 'N/A'
4141
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
42+
$updated = git -C $source log --format='%aD' -n 1 | Get-Date
43+
$source = git -C $source config remote.origin.url
4444
} else {
4545
$updated = (Get-Item "$source\bucket").LastWriteTime
4646
$source = friendly_path $source

0 commit comments

Comments
 (0)