Skip to content

Commit e1b76e0

Browse files
committedNov 9, 2017
[FIX] Make the correct location for crash report
1 parent 4c78526 commit e1b76e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/crashhandler/qgscrashreport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ void QgsCrashReport::exportToCrashFolder()
143143
QDir dir( folder );
144144
if ( !dir.exists() )
145145
{
146-
QDir().mkdir( folder );
146+
QDir().mkpath( folder );
147147
}
148148

149149
QString fileName = folder + "/stack.txt";

0 commit comments

Comments
 (0)
Please sign in to comment.