Skip to content

Commit

Permalink
dxvk: fix dll dir creation
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Apr 4, 2024
1 parent 4db1db9 commit df9d17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dxvk/dxvk.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func Extract(name string, pfx *wine.Prefix) error {

dst := filepath.Join(pfx.Dir(), "drive_c", "windows", dir, filepath.Base(hdr.Name))

if err := os.MkdirAll(dst, 0o755); err != nil {
if err := os.MkdirAll(filepath.Dir(dst), 0o755); err != nil {
return err
}

Expand Down

0 comments on commit df9d17f

Please sign in to comment.