Skip to content

Commit

Permalink
fix: update timeout to 12h
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Nov 18, 2023
1 parent c07768e commit f6b205d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const checkForUpdates = async () => {
const notifier = updateNotifier({
pkg: Package,
shouldNotifyInNpmScript: true, // Make notification work when using with NPX
updateCheckInterval: 1, // 12 hours
updateCheckInterval: 1000 * 60 * 60 * 12, // 12 hours
});
let message = "";
message += "zksync-cli has an update available";
Expand Down

0 comments on commit f6b205d

Please sign in to comment.