Skip to content

Commit

Permalink
do not use verbose output log for advinstExe type
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Pirvulescu committed Dec 20, 2024
1 parent b911eec commit 7b1fbb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppInstallerCommonCore/Manifest/ManifestCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ namespace AppInstaller::Manifest
{
{InstallerSwitchType::Silent, ManifestInstaller::string_t("/exenoui /quiet /norestart")},

Check warning on line 1050 in src/AppInstallerCommonCore/Manifest/ManifestCommon.cpp

View workflow job for this annotation

GitHub Actions / Check Spelling

`exenoui` is not a recognized word. (unrecognized-spelling)
{InstallerSwitchType::SilentWithProgress, ManifestInstaller::string_t("/exenoui /passive /norestart")},
{InstallerSwitchType::Log, ManifestInstaller::string_t("/l*v \"" + std::string(ARG_TOKEN_LOGPATH) + "\"")},
{InstallerSwitchType::Log, ManifestInstaller::string_t("/log \"" + std::string(ARG_TOKEN_LOGPATH) + "\"")},
{InstallerSwitchType::InstallLocation, ManifestInstaller::string_t("APPDIR=\"" + std::string(ARG_TOKEN_INSTALLPATH) + "\"")}

Check warning on line 1053 in src/AppInstallerCommonCore/Manifest/ManifestCommon.cpp

View workflow job for this annotation

GitHub Actions / Check Spelling

`APPDIR` is not a recognized word. (unrecognized-spelling)
};
case InstallerTypeEnum::AdvinstMsi:
Expand Down

0 comments on commit 7b1fbb8

Please sign in to comment.