Skip to content

Commit

Permalink
chore: Cleanup run command output (#476)
Browse files Browse the repository at this point in the history
* chore: Remove ipfs.io URL

* chore: Add data ID to run output

---------

Co-authored-by: Narb <[email protected]>
  • Loading branch information
bgins and narbs91 authored Dec 19, 2024
1 parent 9a0b6ff commit 43b5c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/lilypad/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ func runJob(cmd *cobra.Command, options jobcreator.JobCreatorOptions, network st
return err
}
spinner.Stop()
fmt.Printf("\n🍂 Lilypad job completed, try 👇\n open %s\n cat %s/stdout\n cat %s/stderr\n https://ipfs.io/ipfs/%s\n",
fmt.Printf("🆔 Data ID: %s\n", result.Result.DataID)
fmt.Printf("\n🍂 Lilypad job completed, try 👇\n open %s\n cat %s/stdout\n cat %s/stderr\n",
solver.GetDownloadsFilePath(result.JobOffer.DealID),
solver.GetDownloadsFilePath(result.JobOffer.DealID),
solver.GetDownloadsFilePath(result.JobOffer.DealID),
result.Result.DataID,
)
return err
}
Expand Down

0 comments on commit 43b5c47

Please sign in to comment.