Skip to content

Commit

Permalink
splash/update: skip host delta
Browse files Browse the repository at this point in the history
  • Loading branch information
CanadaHonk committed Jan 13, 2024
1 parent 84b3df4 commit 4f264d8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/splash/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const initNew = async (inst) => {
toSend = -1;

const retryOptions = {
skip_host_delta: false,
skip_host_delta: true,
skip_module_delta: {},
skip_all_module_delta: false,
skip_windows_arch_update: false,
Expand Down Expand Up @@ -149,9 +149,7 @@ const initNew = async (inst) => {
if (install == null) return;
simpleRecord(installs, install);

if (task.HostInstall != null) {
retryOptions.skip_host_delta = true;
} else if (task.ModuleInstall != null) {
if (task.ModuleInstall != null) {
retryOptions.skip_module_delta[install.version.module.name] = true;
}
});
Expand Down

0 comments on commit 4f264d8

Please sign in to comment.