Skip to content

Commit

Permalink
Probably fixing modern powershell errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Mozoloa committed Feb 5, 2023
1 parent 39c70e6 commit 763129e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Advanced Installer/A1111's Web UI Autoinstaller.aip
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
<ROW Property="MSIFASTINSTALL" MultiBuildValue="DefaultBuild:3"/>
<ROW Property="Manufacturer" Value="Empire Media Science"/>
<ROW Property="MsiLogging" MultiBuildValue="DefaultBuild:vp"/>
<ROW Property="ProductCode" Value="2057:{61401401-B35D-4A45-9B82-0155BABB7019} " Type="16"/>
<ROW Property="ProductCode" Value="2057:{46BE762B-32F4-414E-A818-C85C22298EE8} " Type="16"/>
<ROW Property="ProductLanguage" Value="2057"/>
<ROW Property="ProductName" Value="A1111 Web UI Autoinstaller"/>
<ROW Property="ProductVersion" Value="1.5.10"/>
<ROW Property="ProductVersion" Value="1.5.11"/>
<ROW Property="REBOOT" MultiBuildValue="DefaultBuild:ReallySuppress"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND;AI_SETUPEXEPATH;SETUPEXEDIR"/>
<ROW Property="UpgradeCode" Value="{ED3F2830-A9E0-46B4-9D7E-C242564349CB}"/>
Expand All @@ -53,7 +53,7 @@
<ROW Directory="regid.199509.com.example_Dir" Directory_Parent="CommonAppDataFolder" DefaultDir="REGID1~1.EXA|regid.1995-09.com.example"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiCompsComponent">
<ROW Component="AI_CustomARPName" ComponentId="{C1CF2C2E-58EF-4151-AAFE-794E8AD55D9C}" Directory_="APPDIR" Attributes="260" KeyPath="DisplayName" Options="1"/>
<ROW Component="AI_CustomARPName" ComponentId="{6465E4AD-5A24-4A3E-8C5B-6DD45B59F3DD}" Directory_="APPDIR" Attributes="260" KeyPath="DisplayName" Options="1"/>
<ROW Component="AI_DisableModify" ComponentId="{F2050EAB-4FE0-4037-BD04-5CC3D395CCD6}" Directory_="APPDIR" Attributes="260" KeyPath="NoModify" Options="1"/>
<ROW Component="AI_ExePath" ComponentId="{B811E420-F0BA-4852-9CFC-442518C5004C}" Directory_="APPDIR" Attributes="260" KeyPath="AI_ExePath"/>
<ROW Component="APPDIR" ComponentId="{8CF866A2-A911-49F3-990F-8C58E2C86E81}" Directory_="APPDIR" Attributes="0"/>
Expand Down
4 changes: 2 additions & 2 deletions Launcher/Functions.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ function Install-py {
function Install-git {
$gitInPath = Get-Command git -ErrorAction SilentlyContinue
if ($gitInPath) {
$Global:gitPath = $gitInPath.Path
logger.info "Git found and already in PATH at $($gitInPath.Path)"
$Global:gitPath = $gitInPath.Source
logger.info "Git found and already in PATH at $($gitInPath.Source)"
return
}
else {
Expand Down

0 comments on commit 763129e

Please sign in to comment.