tango 0.1.14 → 0.1.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,12 +37,6 @@ module Tango
37
37
  def fork_and_exec(command, env_vars, *args)
38
38
  read_end, write_end = IO.pipe
39
39
  pid = Kernel.fork do
40
- # set the actual user ID to be the effective user ID of the parent
41
- # we need to do this, because Ruby scripts called via a process with a different uid and euid will barf.
42
- # This is an issue if we've already set the euid to something different.
43
- # Do it after we've forked, as we can't change it back if we do it in the main parent process
44
- Process::Sys.setuid(Process::Sys.geteuid)
45
-
46
40
  read_end.close
47
41
  STDOUT.reopen(write_end)
48
42
  STDERR.reopen(write_end)
@@ -1,5 +1,5 @@
1
1
  # coding: utf-8
2
2
 
3
3
  module Tango
4
- VERSION = "0.1.14"
4
+ VERSION = "0.1.15"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tango
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.15
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: