f99010fae1
Desktop Artifacts / Desktop Build (Linux) (push) Waiting to run
Desktop Artifacts / Desktop Build (Windows) (push) Waiting to run
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Waiting to run
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Waiting to run
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Waiting to run
CI / Go Test (windows-latest) (push) Waiting to run
CI / Desktop Unit Tests (Windows) (push) Waiting to run
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
29 lines
441 B
Bash
Executable File
29 lines
441 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
is_truthy() {
|
|
case "${1:-}" in
|
|
1|true|TRUE|True|yes|YES|on|ON)
|
|
return 0
|
|
;;
|
|
esac
|
|
return 1
|
|
}
|
|
|
|
if [ "$#" -gt 0 ]; then
|
|
case "$1" in
|
|
-*)
|
|
;;
|
|
*)
|
|
exec /usr/local/bin/agentsview "$@"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
if is_truthy "${PG_SERVE:-}"; then
|
|
exec /usr/local/bin/agentsview pg serve "$@"
|
|
fi
|
|
|
|
exec /usr/local/bin/agentsview serve "$@"
|