mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-07 12:25:31 +00:00
04b81dd664
This allows starting calls by invoking something like _build/run. Closes #292
10 lines
178 B
Bash
Executable file
10 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
ABS_BUILDDIR='@ABS_BUILDDIR@'
|
|
ABS_SRCDIR='@ABS_SRCDIR@'
|
|
|
|
export GSETTINGS_SCHEMA_DIR="${ABS_BUILDDIR}/data"
|
|
set -x
|
|
exec "${ABS_BUILDDIR}/src/gnome-calls" "$@"
|
|
|