Skip to content

Commit 60d308f

Browse files
authored
fix(scoop-prefix): Fix typo that breaks global installed apps (#4795)
1 parent af26d86 commit 60d308f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
## [Unreleased](https://github.com/ScoopInstaller/Scoop/compare/master...develop)
22

3+
### Bug Fixes
4+
5+
- **scoop-prefix:** Fix typo that breaks global installed apps ([#4795](https://github.com/ScoopInstaller/Scoop/issues/4795))
6+
37
### Code Refactoring
48

5-
- **relpath:** Use `$PSScriptRoot` instead of `relpath` ([#4793](https://github.com/ScoopInstaller/Scoop/issues/4793)
9+
- **relpath:** Use `$PSScriptRoot` instead of `relpath` ([#4793](https://github.com/ScoopInstaller/Scoop/issues/4793))
610

711
## [v0.1.0](https://github.com/ScoopInstaller/Scoop/compare/2021-12-26...v0.1.0) - 2022-03-01
812

libexec/scoop-prefix.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (!$app) {
1313

1414
$app_path = currentdir $app $false
1515
if (!(Test-Path $app_path)) {
16-
$app_path = currentdir $app$true
16+
$app_path = currentdir $app $true
1717
}
1818

1919
if (Test-Path $app_path) {

0 commit comments

Comments
 (0)