Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sownak committed Oct 17, 2023
1 parent d361a97 commit 3382fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/supplychain-app/besu/smartContracts/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 3382fca

Please sign in to comment.