diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-03-18 14:43:44 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-03-18 14:43:44 -0400 |
commit | 78e305b3674166070be7789a25e58eb2bf6ece46 (patch) | |
tree | c0e0d1fc32a910a3f5064b77e0d4a2d2c2452fb4 /src/edu | |
parent | 474686135abd4ee49dd943ae4f7a05c6b84672dd (diff) | |
download | do_not_let_the_wrapper_fool_you-master.tar.gz |
Diffstat (limited to 'src/edu')
-rw-r--r-- | src/edu/stsci/ShUtil.groovy | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/edu/stsci/ShUtil.groovy b/src/edu/stsci/ShUtil.groovy new file mode 100644 index 0000000..0a57864 --- /dev/null +++ b/src/edu/stsci/ShUtil.groovy @@ -0,0 +1,14 @@ +package edu.stsci + +class ShUtil implements Serializable { + def libroot = libraryResource('edu/stsci/init.sh') + def environ = [:] + + def init() { + def pairs = sh "source ${libroot}", returnStdout: true + } + + def infect() { + sh "echo" + } +} |