Skip to content

Commit

Permalink
fix(package_info_plus): not working in Windows release mode from netw…
Browse files Browse the repository at this point in the history
…ork location (#1931)

Co-authored-by: Volodymyr Buberenko <vbuberen@users.noreply.github.com>
Co-authored-by: Volodymyr Buberenko <v.buberenko@gmail.com>
  • Loading branch information
3 people committed Jun 29, 2023
1 parent 45b9589 commit 784caca
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -26,7 +26,7 @@ class PackageInfoPlusWindowsPlugin extends PackageInfoPlatform {
resolvedExecutable = resolvedExecutable.replaceFirst(r"UNC\", r"\\");
}

final info = FileVersionInfo(Platform.resolvedExecutable);
final info = FileVersionInfo(resolvedExecutable);
final versions = info.productVersion.split('+');
final data = PackageInfoData(
appName: info.productName,
Expand Down

0 comments on commit 784caca

Please sign in to comment.