Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
fix wrong var to auto install utils
Browse files Browse the repository at this point in the history
  • Loading branch information
couleurm committed Feb 1, 2022
1 parent 75a4d40 commit e7376a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ $Buckets = Join-Path (Get-Item (Get-Command scoop.cmd).Source).Directory.Parent.

ForEach ($knownbucket in [array](scoop.cmd bucket known)){
if (($ToInstall -like "$knownbucket/*") -and (-Not(Test-Path (Join-Path $Buckets $knownbucket))) ){scoop.cmd bucket add $knownbucket}
if (($app -like "utils/*") -and (-Not(Test-Path (Join-Path $Buckets utils))) ){scoop.cmd bucket add utils 'https://github.com/couleur-tweak-tips/utils'}
if (($ToInstall -like "utils/*") -and (-Not(Test-Path (Join-Path $Buckets utils))) ){scoop.cmd bucket add utils 'https://github.com/couleur-tweak-tips/utils'}
}

<# -------------------------------------- Installing the manifests --------------------------------------#>
Expand Down

0 comments on commit e7376a4

Please sign in to comment.