Skip to content

Commit

Permalink
fix: fix upload files to take remote path
Browse files Browse the repository at this point in the history
  • Loading branch information
riyasng12 committed Dec 22, 2023
1 parent baf616c commit d0a19da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/chains/kusama/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func getKusamaRunConfig(serviceConfig *utils.PolkadotServiceConfig, enclaveConte

func uploadFiles(cli *common.Cli, enclaveCtx *enclaves.EnclaveContext) error {
runConfig := common.GetStarlarkRunConfig("{}", common.DivePolkaDotUtilsPath, runUploadFiles)
_, _, err := enclaveCtx.RunStarlarkPackage(cli.Context().GetContext(), "/home/riya/polakadot-kurtosis-package", runConfig)
_, err := enclaveCtx.RunStarlarkRemotePackageBlocking(cli.Context().GetContext(), common.PolkadotRemotePackagePath, runConfig)
if err != nil {
return common.WrapMessageToError(common.ErrStarlarkRunFailed, err.Error())
}
Expand Down

0 comments on commit d0a19da

Please sign in to comment.