summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-03-18 14:43:44 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-03-18 14:43:44 -0400
commit78e305b3674166070be7789a25e58eb2bf6ece46 (patch)
treec0e0d1fc32a910a3f5064b77e0d4a2d2c2452fb4 /src
parent474686135abd4ee49dd943ae4f7a05c6b84672dd (diff)
downloaddo_not_let_the_wrapper_fool_you-master.tar.gz
Getting closerHEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/edu/stsci/ShUtil.groovy14
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"
+ }
+}