remove console messages
This commit is contained in:
parent
3c6cb39956
commit
657c7c962a
|
@ -56,14 +56,12 @@ export function formatDate(dateStr: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function copyFile(source: string, target: string) {
|
export async function copyFile(source: string, target: string) {
|
||||||
console.log("copyFile....");
|
|
||||||
const fs = require('fs').promises;
|
const fs = require('fs').promises;
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
let sourceFilePath = path.join(PATH_FILES_TO_IMPORT, source);
|
let sourceFilePath = path.join(PATH_FILES_TO_IMPORT, source);
|
||||||
let targetFilePath = path.join(PATH_FILES_TO_IMPORT, target);
|
let targetFilePath = path.join(PATH_FILES_TO_IMPORT, target);
|
||||||
|
|
||||||
console.log(`Current working directory: ${process.cwd()}`);
|
|
||||||
sourceFilePath = path.join(process.cwd(), sourceFilePath);
|
sourceFilePath = path.join(process.cwd(), sourceFilePath);
|
||||||
targetFilePath = path.join(process.cwd(), targetFilePath);
|
targetFilePath = path.join(process.cwd(), targetFilePath);
|
||||||
//
|
//
|
||||||
|
@ -103,7 +101,6 @@ export async function deleteFile(fileName: string): Promise<void> {
|
||||||
let filePath = path.join(PATH_FILES_TO_IMPORT, fileName);
|
let filePath = path.join(PATH_FILES_TO_IMPORT, fileName);
|
||||||
filePath = path.join(process.cwd(), filePath);
|
filePath = path.join(process.cwd(), filePath);
|
||||||
await unlink(filePath);
|
await unlink(filePath);
|
||||||
console.log(`File deleted: ${filePath}`);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`Error deleting file: ${fileName}. Error: ${error}`);
|
console.error(`Error deleting file: ${fileName}. Error: ${error}`);
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue