svn.jl 477 B

1234567891011121314151617181920212223
  1. # This file is part of Reduce.jl. It is licensed under the MIT license
  2. # Copyright (C) 2017 Michael Reed
  3. rpsl = "redcsl"
  4. ρ = 2 # default # version history
  5. date = Dict(
  6. 0 => "2017-05-16",
  7. 1 => "2018-01-17",
  8. 2 => "2018-04-06",
  9. 3 => "2018-08-08")
  10. rsvn = Dict(
  11. 0 => "4052",
  12. 1 => "4372",
  13. 2 => "4567",
  14. 3 => "4717")
  15. function _spawn(cmd, input=devnull, output=devnull)
  16. run(pipeline(cmd, stdin=input, stdout=output, stderr=stderr), wait=false)
  17. end