From 3382fcaf5b346b84a84104e6902bfd0298dce329 Mon Sep 17 00:00:00 2001 From: sownak Date: Tue, 17 Oct 2023 12:16:28 +0100 Subject: [PATCH] updated --- examples/supplychain-app/besu/smartContracts/deploy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/supplychain-app/besu/smartContracts/deploy.js b/examples/supplychain-app/besu/smartContracts/deploy.js index 71e3bcda2..c2eb15b26 100644 --- a/examples/supplychain-app/besu/smartContracts/deploy.js +++ b/examples/supplychain-app/besu/smartContracts/deploy.js @@ -72,7 +72,7 @@ const deploySmartContract = async (contractOptions) => { const PostDeployKeeping = (abi, bytecode) => { try { if (!fs.existsSync(outputFolder)) { - fs.mkdirSync(outputFolder, 0744); // try to create a build folder if not exists + fs.mkdirSync(outputFolder, 0o744); // try to create a build folder if not exists args['v'] && console.log(`build folder is created`); } } catch (e) {