mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-12 14:04:05 -08:00
fix(winget): remove incorrect variables
This commit is contained in:
parent
5047390bc4
commit
da4fb19684
|
@ -63,12 +63,14 @@ if (-not $Token) {
|
||||||
}
|
}
|
||||||
# Install the latest wingetcreate exe
|
# Install the latest wingetcreate exe
|
||||||
# Download and install C++ Runtime framework package.
|
# Download and install C++ Runtime framework package.
|
||||||
Invoke-WebRequest https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile $(vcLibsBundleFile)
|
$vcLibsBundleFile = "$env:TEMP\Microsoft.VCLibs.Desktop.appx"
|
||||||
Add-AppxPackage $(vcLibsBundleFile)
|
Invoke-WebRequest https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile $vcLibsBundleFile
|
||||||
|
Add-AppxPackage $vcLibsBundleFile
|
||||||
|
|
||||||
# Download Winget-Create msixbundle, install, and execute update.
|
# Download Winget-Create msixbundle, install, and execute update.
|
||||||
Invoke-WebRequest https://aka.ms/wingetcreate/latest/msixbundle -OutFile $(appxBundleFile)
|
$appxBundleFile = "$env:TEMP\wingetcreate.msixbundle"
|
||||||
Add-AppxPackage $(appxBundleFile)
|
Invoke-WebRequest https://aka.ms/wingetcreate/latest/msixbundle -OutFile $appxBundleFile
|
||||||
|
Add-AppxPackage $appxBundleFile
|
||||||
|
|
||||||
# Create the PR
|
# Create the PR
|
||||||
wingetcreate submit --token $Token $Version
|
wingetcreate submit --token $Token $Version
|
||||||
|
|
Loading…
Reference in a new issue