We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f02f60 commit 8d58661Copy full SHA for 8d58661
packages/sharing-smart-contract/scripts/deploy.js
@@ -7,9 +7,10 @@ const { ethers, upgrades } = hre;
7
// Parse command line arguments
8
const args = process.argv.slice(2);
9
const deploymentIdIndex = args.indexOf('--deployment-id');
10
-const deploymentId = deploymentIdIndex !== -1 && deploymentIdIndex + 1 < args.length
11
- ? args[deploymentIdIndex + 1]
12
- : undefined;
+const deploymentId =
+ deploymentIdIndex !== -1 && deploymentIdIndex + 1 < args.length
+ ? args[deploymentIdIndex + 1]
13
+ : undefined;
14
15
/**
16
* This script deploys DataProtectorSharing contract and its dependencies using
0 commit comments