11 lines
312 B
Bash
Executable file
11 lines
312 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# SPDX-FileCopyrightText: 2026 FocusFlow contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
# 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 "$@"
|