From 1f299e66bf32522c2a2ad69a371b3e2561ad11a9 Mon Sep 17 00:00:00 2001 From: Ellet Date: Thu, 13 Jun 2024 20:41:11 +0300 Subject: [PATCH] fix(publishing): create build directory if doesn't exist --- scripts/create_version_content_from_github_release.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/create_version_content_from_github_release.dart b/scripts/create_version_content_from_github_release.dart index 59ca0c97..63b51919 100644 --- a/scripts/create_version_content_from_github_release.dart +++ b/scripts/create_version_content_from_github_release.dart @@ -61,5 +61,8 @@ Future main(List args) async { print('Release notes is null.'); exit(1); } + if (!await versionContentFile.parent.exists()) { + await versionContentFile.parent.create(recursive: true); + } await versionContentFile.writeAsString(githubReleaseNotes); }