"dart: Command not found" when 运行 Codemagic 中的 Dart 命令

"dart: Command not found" when running Dart commands in Codemagic

当我在 Codemagic 中尝试 运行 Dart 命令(即使是简单的 dart --version)时,它失败并显示错误 dart: command not found.

要解决此问题,您需要将脚本更新为 运行 $FLUTTER_ROOT/bin/dart

Codemagic 构建机器上没有单独的 Dart SDK,只有 Flutter SDK,您可以使用 Flutter 附带的 Dart 版本。

例如

#!/bin/sh

$FLUTTER_ROOT/bin/dart --version