forked from p15670423/monkey
Merge pull request #546 from guardicore/bugfix/match_island_binary_to_spec_file
Fix names to match island naming conventions
This commit is contained in:
commit
065bcf2c84
|
@ -94,7 +94,11 @@ def get_traceroute_binaries():
|
|||
|
||||
|
||||
def get_monkey_filename():
|
||||
name = 'monkey'
|
||||
name = 'monkey-'
|
||||
if is_windows():
|
||||
name = name+"windows-"
|
||||
else:
|
||||
name = name+"linux-"
|
||||
if is_32_bit():
|
||||
name = name+"32"
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue