8 lines
216 B
Bash
Executable file
8 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Compatibility wrapper for the Dart desktop development runner.
|
|
set -euo pipefail
|
|
|
|
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$root_dir"
|
|
|
|
exec dart run scripts/dev.dart "$@"
|