lib/xezat/command/bump.rb in xezat-0.0.3 vs lib/xezat/command/bump.rb in xezat-0.0.4

- old
+ new

@@ -85,9 +85,10 @@ # package が依存している runtime のリストを取得する def get_runtime_packages(cygport) command = ['bash', File.expand_path(File.join(DATA_DIR, 'invoke_cygport_dep.sh')), cygport] result, error, status = Open3.capture3(command.join(' ')) raise CygportProcessError, error unless status.success? + result.gsub!(/^.*\*\*\*.*$/, '') result.split($/).map! do |runtime| runtime.lstrip end end