Changeset ecf0a04b in mainline for tools/ew.py
- Timestamp:
- 2019-06-24T15:47:05Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d86393c8
- Parents:
- fd244cd
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-24 15:46:46)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-24 15:47:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ew.py
rfd244cd recf0a04b 69 69 70 70 def run_in_console(cmd, title): 71 ecmd = cmd.replace('"', '\\"')72 71 temu = termemu_detect() 73 72 if temu == 'gnome-terminal': 74 cmdline = temu + ' -- ' + ecmd 75 else: 73 cmdline = temu + ' -- ' + cmd 74 else: 75 ecmd = cmd.replace('"', '\\"') 76 76 cmdline = temu + ' -T ' + '"' + title + '"' + ' -e "' + ecmd + '"' 77 77
Note:
See TracChangeset
for help on using the changeset viewer.