Skip to content

Commit 803e88b

Browse files
committed
Update tmux-parallel.py
1 parent cf7d61f commit 803e88b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tmux-parallel.py

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def call(shell_cmd):
5757
for brew_file in args.file:
5858
with open(brew_file, 'r') as f:
5959
apps = f.readlines()
60+
apps = filter(lambda x: not x.startswith('#'), apps)
6061
apps = map(lambda x: x.replace('\n', '').strip(), apps)
6162
apps = filter(lambda x: len(x) > 0, apps)
6263
parallel_groups.append(apps)

0 commit comments

Comments
 (0)