Comment 3 for bug 53613

Revision history for this message
Phil Housley (undeconstructed) wrote :

Ah, I see it, /usr/bin/beagle-search uses a bash "exec -a" to launch the mono executable, but the script is marked #/bin/sh, which is dash - dash doesn't support "exec -a", so it fails.

The solutions are either:
Line 1: #!/bin/bash
 or
Line 24: exec $BEAGLE_MONO_RUNTIME --debug $MONO_EXTRA_ARGS $THIS_EXE "$@"

Although I didn't bother to test the latter.