Skip to content

Commit

Permalink
Merge pull request #1153 from Stankye/master
Browse files Browse the repository at this point in the history
fix: fixes proxmox_storage_iso temp dir path
  • Loading branch information
Tinyblargon authored Nov 19, 2024
2 parents 1c2dc49 + ba93052 commit 71fcd5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxmox/resource_storage_iso.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func resourceStorageIsoCreate(d *schema.ResourceData, meta interface{}) error {
node := d.Get("pve_node").(string)

client := pconf.Client
file, err := os.CreateTemp("/tmp", fileName)
file, err := os.CreateTemp(os.TempDir(), fileName)
if err != nil {
return err
}
Expand Down

0 comments on commit 71fcd5b

Please sign in to comment.