dtas.git  about / heads / tags
duct tape audio suite for *nix
blob ebde23c2f4d67b53d1dab0a5fdd0680b10db6dd6 342 bytes (raw)
$ git show tfx-pu:lib/dtas/spawn_fix.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
# Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
# workaround for older Rubies: https://bugs.ruby-lang.org/issues/8770
module DTAS::SpawnFix # :nodoc:
  def spawn(*args)
    super(*args)
  rescue Errno::EINTR
    retry
  end if RUBY_VERSION.to_f <= 2.1
end

git clone git://80x24.org/dtas.git
git clone https://80x24.org/dtas.git