Skip to content

Commit

Permalink
fix: more printf debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Oct 30, 2024
1 parent b2d820a commit 72ae392
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion assets/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ def get_map_files(map_file: str, roots: List[str]) -> List[Mapping]:


def download_assets(roots: List[str], outdir: str, assets: List[str]):
print("downloading assets", outdir, assets)
run_sourdump(roots, [
"download",
"--outdir",
Expand Down
1 change: 1 addition & 0 deletions cmd/sourdump/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ func Download(ctx context.Context, cache assets.Store, roots []assets.Root, outD
log.Fatal().Err(err).Msgf("could not resolve asset %s", target)
}

fmt.Printf("%s->%s", target, filepath.Join(outDir, target))
err = outCache.Set(ctx, target, data)
if err != nil {
log.Fatal().Err(err).Msgf("could not save asset %s", target)
Expand Down

0 comments on commit 72ae392

Please sign in to comment.