[mtouch] Fix case of the final target directory.

This commit is contained in:
Manuel de la Pena 2016-09-06 18:19:27 +02:00
Родитель 7826524c87
Коммит 546a2fd907
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1450,7 +1450,7 @@ namespace Xamarin.Bundler {
if (!EnableMSym)
return;
var target_directory = string.Format ("{0}.msym", AppDirectory);
var target_directory = string.Format ("{0}.mSYM", AppDirectory);
if (!Directory.Exists (target_directory))
Directory.CreateDirectory (target_directory);