diff --git a/script/get-changes-since b/script/get-changes-since index df92c2d82e24ab6e35b3079068a22934914f73a9..e88505008c3d4a7d19f49431f866c963a1f6a198 100755 --- a/script/get-changes-since +++ b/script/get-changes-since @@ -9,8 +9,8 @@ main(); async function main() { // Use form of: YYYY-MM-DD - 2023-01-09 - const startDate = new Date("2023-01-01"); - const today = new Date("2023-01-010") + const startDate = new Date(process.argv[2]); + const today = new Date() console.log(`Changes from ${startDate} to ${today}\n`);