Skip to content

Commit 7ef7430

Browse files
committed
shebang lineがないときのエラーメッセージが出力されるようにした
1 parent 27d5736 commit 7ef7430

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rime/plugins/plus/basic_patch.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,9 @@ def __init__(self, src_name, src_dir, out_dir, run_flags=[]):
454454
# Replace the executable with the shebang line
455455
run_args = list(self.run_args)
456456
try:
457-
run_args = self._ReadAndParseShebangLine().split(' ') + run_args[1:]
457+
run_args[0] = self._ReadAndParseShebangLine()
458+
if run_args[0] is not None:
459+
run_args = run_args[0].split(' ') + run_args[1:]
458460
except IOError:
459461
pass
460462
self.run_args = tuple(run_args)

0 commit comments

Comments
 (0)