Only absolutize the command when it doesnt contain already a slash
This commit is contained in:
parent
0b7def1788
commit
611bd9ccda
@ -131,10 +131,13 @@ def get_command(activity, activity_id=None, object_id=None, uri=None):
|
|||||||
if uri is not None:
|
if uri is not None:
|
||||||
command.extend(['-u', uri])
|
command.extend(['-u', uri])
|
||||||
|
|
||||||
bin_path = os.path.join(activity.get_path(), 'bin')
|
# if the command is in $BUNDLE_ROOT/bin, execute the absolute path so there
|
||||||
absolute_path = os.path.join(bin_path, command[0])
|
# is no need to mangle with the shell's PATH
|
||||||
if os.path.exists(absolute_path):
|
if '/' not in command[0]:
|
||||||
command[0] = absolute_path
|
bin_path = os.path.join(activity.get_path(), 'bin')
|
||||||
|
absolute_path = os.path.join(bin_path, command[0])
|
||||||
|
if os.path.exists(absolute_path):
|
||||||
|
command[0] = absolute_path
|
||||||
|
|
||||||
logging.debug('launching: %r' % command)
|
logging.debug('launching: %r' % command)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user