Add support for 'dart' command in fvm wrapper script

This commit is contained in:
HendrikRauh 2026-02-08 17:09:30 +01:00
parent 9a30d3dff5
commit ccf4482723

View file

@ -66,6 +66,10 @@
shift
exec flutter "$@"
;;
dart)
shift
exec dart "$@"
;;
*)
echo "fvm wrapper: command '$1' not implemented (using Nix-managed Flutter)" >&2
exit 1