From 49c0d35a4dfda34add0e0ba47f6d9eab60534b30 Mon Sep 17 00:00:00 2001 From: Rikka Date: Mon, 11 Mar 2024 10:30:04 +0000 Subject: [PATCH] Clear repeated function --- osiris.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/osiris.js b/osiris.js index 67e8fad..92a1ba4 100644 --- a/osiris.js +++ b/osiris.js @@ -39,15 +39,6 @@ function areRemoteChanges() { }); } -// Function to check if local files are outdated compared to the remote GitHub repo -async function checkRepoStatus() { - const remoteChanges = await areRemoteChanges(); - if (remoteChanges) { - console.log('There are remote changes. Some files may be outdated.'); - } else { - console.log('No remote changes. All files are up to date.'); - } -} // Function to check if local files are outdated compared to the remote GitHub repo async function checkRepoStatus() { const remoteChanges = await areRemoteChanges();