build-finalize: Ensure we always create the export dir

Otherwise build-export fails to see we ran finalize
tingping/wmclass
Alexander Larsson 2015-02-17 16:20:33 +01:00
parent d8ac76d467
commit d7f186c118
1 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,9 @@ collect_exports (GFile *base, GCancellable *cancellable, GError **error)
files = g_file_get_child (base, "files");
export = g_file_get_child (base, "export");
if (!gs_file_ensure_directory (export, TRUE, cancellable, error))
goto out;
for (i = 0; paths[i]; i++)
{
gs_unref_object GFile *src = NULL;