Maj de sheebr + maj mineure des scripts

This commit is contained in:
Marc
2021-11-29 14:08:48 +01:00
parent 07c16904e6
commit 952edb4270
18 changed files with 294 additions and 33 deletions
+6 -1
View File
@@ -1,4 +1,9 @@
const fs = require('fs')
if(process.argv.length >= 3){
fs.openSync(process.argv[3], 'w');
try{
fs.openSync(process.argv[3], 'w');
}
catch(e){
console.error(e.code + '\n' + e.message);
}
}