Skip to content

Commit

Permalink
fix(LibArtifact): path to generate-artifact.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
huyhuynh3103 committed Oct 9, 2024
1 parent 7f1f948 commit 6847109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/libraries/LibArtifact.sol
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ library LibArtifact {

function _serializeArtifact(string memory dirPath, ArtifactInfo memory info) internal {
string[] memory inputs = new string[](25);
inputs[0] = string.concat(vme.getRuntimeConfig().scriptRoot, "/generate-artifact.sh");
inputs[0] = "./generate-artifact.sh";
inputs[1] = "--name";
inputs[2] = info.contractName;
inputs[3] = "--args";
Expand Down

0 comments on commit 6847109

Please sign in to comment.