浏览代码

Add haskell helper script

Moghedrin 10 年之前
父节点
当前提交
53aefb7195
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      test/tests/run-haskell-in-container.sh

+ 9 - 0
test/tests/run-haskell-in-container.sh

@@ -0,0 +1,9 @@
+#!/bin/bash
+set -e
+
+dir="$(readlink -f "$(dirname "$BASH_SOURCE")")"
+
+inContainerPath="/tmp/haskell"
+cmd=( "$inContainerPath/container.rb" )
+
+docker run --rm -v "$dir":"$inContainerPath":ro -w "$inContainerPath" --entrypoint runhaskell "$1" "${cmd[@]}"