Skip to content

Commit

Permalink
fix: upload file path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 5d988ad commit d17e7c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parachain/manta.star
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def run_manta(plan, args):
config = ServiceConfig(
image = "mantanetwork/manta:latest",
files = {
"/app": "output",
"/app": "configs",
},
ports = {
"parachain": PortSpec(9944, transport_protocol = "TCP"),
Expand All @@ -29,7 +29,7 @@ def run_calamari(plan, args):
config = ServiceConfig(
image = "mantanetwork/manta:latest",
files = {
"/app": "output",
"/app": "configs",
},
ports = {
"parachain": PortSpec(9944, transport_protocol = "TCP"),
Expand Down

0 comments on commit d17e7c2

Please sign in to comment.