1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 11:09:01 +00:00

remove trezorctl-emu.sh script, trezorctl now uses default pipe path if not provided

This commit is contained in:
Pavol Rusnak 2016-07-02 20:50:04 +02:00
parent 16b6289c50
commit e00453661d
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 2 deletions

View File

@ -78,6 +78,8 @@ def get_transport(transport_string, path, **kwargs):
if transport_string == 'pipe':
from trezorlib.transport_pipe import PipeTransport
if path == '':
path = '/tmp/pipe.trezor'
return PipeTransport(path, is_device=False, **kwargs)
if transport_string == 'bridge':

View File

@ -1,2 +0,0 @@
#!/bin/sh
./trezorctl -t pipe -p /tmp/pipe.trezor $*