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); }