lib/command/send.rb in narou-1.5.1 vs lib/command/send.rb in narou-1.5.2

- old
+ new

@@ -35,11 +35,11 @@ narou send --without-freeze # 凍結済は対象外に Options: EOS - @opt.on("--without-freeze", "`全話'送信時に凍結された小説は対象外にする") { + @opt.on("--without-freeze", "一括送信時に凍結された小説は対象外にする") { @options["without-freeze"] = true } end def get_device(argv) @@ -103,16 +103,19 @@ end until exit_copy print "." sleep(0.5) end + puts if copy_to_path - puts puts copy_to_path + " へコピーしました" else error "#{device.name}が見つからなかったためコピー出来ませんでした" exit 1 # next しても次も失敗すると分かりきっているためここで終了する end end + rescue Interrupt => e + puts "送信を中断しました" + exit 1 end end end