Skip to content

Commit

Permalink
fix(backend): write file to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Oct 16, 2023
1 parent 5b06cac commit 364ff7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/cmd/user/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func export(persister persistence.Persister, outFile string) error {
if err != nil {
return err
}
err = os.WriteFile(outputFile, bytes, 0600)
err = os.WriteFile(outFile, bytes, 0600)
if err != nil {
return err
}
Expand Down

0 comments on commit 364ff7c

Please sign in to comment.