Skip to content

Commit

Permalink
fix: file tree on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Nov 15, 2024
1 parent 9bf7851 commit 3271d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/execute.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func executeRecipe(cmd *cobra.Command, opts executeOptions, re *recipe.Recipe) e
if opts.Subpath != "" {
files = make(map[string]recipe.File, len(sauce.Files))
for path, file := range sauce.Files {
files[filepath.Join(opts.Subpath, path)] = file
files[filepath.ToSlash(filepath.Join(opts.Subpath, path))] = file
}
}

Expand Down

0 comments on commit 3271d1e

Please sign in to comment.