mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-02 21:04:06 +03:00
12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
set -euo pipefail
|
|
|
|
if [ -x "${FLUXER_CI_BIN:-}" ]; then
|
|
exec "$FLUXER_CI_BIN" "$@"
|
|
fi
|
|
|
|
script_dir="$(cd "$(dirname "$0")" && pwd)"
|
|
exec cargo run --quiet --manifest-path "$script_dir/Cargo.toml" -- "$@"
|