Skip to content

Commit

Permalink
fix(shortcuts): Fix missing parentheses (ScoopInstaller#5006)
Browse files Browse the repository at this point in the history
* fix(shortcuts): Fix missing parentheses

* Update CHANGELOG.md
  • Loading branch information
rashil2000 committed Jun 21, 2022
1 parent 0fd6657 commit 83d0fef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### Bug Fixes

- **chore:** Update help documentation ([#5002](https://github.com/ScoopInstaller/Scoop/issues/5002))
- **shortcuts:** Fix network drive shortcut creation ([#4410](https://github.com/ScoopInstaller/Scoop/issues/4410))
- **shortcuts:** Fix network drive shortcut creation ([#4410](https://github.com/ScoopInstaller/Scoop/issues/4410)), ([#5006](https://github.com/ScoopInstaller/Scoop/issues/5006))

### Code Refactoring

Expand Down
2 changes: 1 addition & 1 deletion lib/shortcuts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function shortcut_folder($global) {
} else {
$startmenu = 'StartMenu'
}
return Convert-Path $(ensure [System.IO.Path]::Combine([Environment]::GetFolderPath($startmenu), 'Programs', 'Scoop Apps'))
return Convert-Path (ensure ([System.IO.Path]::Combine([Environment]::GetFolderPath($startmenu), 'Programs', 'Scoop Apps')))
}

function startmenu_shortcut([System.IO.FileInfo] $target, $shortcutName, $arguments, [System.IO.FileInfo]$icon, $global) {
Expand Down

0 comments on commit 83d0fef

Please sign in to comment.