diff --git a/index.js b/index.js index 743dbee..003624e 100644 --- a/index.js +++ b/index.js @@ -115,9 +115,8 @@ const main = async () => { ); await helpers.recordCurrentDoc(currentDocId); - // Delete the old document, because we don't need it anymore. - console.log(`Deleting cloned document with id: ${oldDocId}`); - await drive.files.delete({ fileId: oldDocId }); + // Log out the old document in case we need to find it later. + console.log(`Old document id: ${oldDocId}`); } };