We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$dir
I'm trying to add a jar executable shortcut by this manifest
"shortcuts": [ [ "java", // consume there is java on the machine "App", "-jar \"$dir/app.jar\"" ] ]
target just directly appended to $dir
Scoop/lib/shortcuts.ps1
Line 5 in 859d1db
It should find where the target is just like where the shim creation does.
Scoop/lib/install.ps1
Lines 752 to 759 in 859d1db
It should try to find where the target is and create the link to that.
Please note that the link's working directory just simply reads the $target 's directory, it should be changed to $dir by passing it down.
$target
Windows version: 11
OS architecture: 64bit
PowerShell version: 7.4.6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
Scenario
I'm trying to add a jar executable shortcut by this manifest
Current Behavior
target just directly appended to
$dir
Scoop/lib/shortcuts.ps1
Line 5 in 859d1db
Expected Behavior
It should find where the target is just like where the shim creation does.
Scoop/lib/install.ps1
Lines 752 to 759 in 859d1db
Possible Solution
It should try to find where the target is and create the link to that.
Please note that the link's working directory just simply reads the
$target
's directory, it should be changed to$dir
by passing it down.System details
Windows version: 11
OS architecture: 64bit
PowerShell version: 7.4.6
The text was updated successfully, but these errors were encountered: