mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-07-02 17:05:22 -04:00
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
get_abs_dir() {
|
|
# $1 : relative filename
|
|
echo "$(cd "$(dirname "$1")" && pwd)"
|
|
}
|
|
|
|
SDRANGEL_RESOURCES="$(get_abs_dir "$0")/../Resources"
|
|
exec "$SDRANGEL_RESOURCES/sdrangel"
|
|
|