Przeglądaj źródła

Add haskell helper script

Moghedrin 10 lat temu
rodzic
commit
53aefb7195
1 zmienionych plików z 9 dodań i 0 usunięć
  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[@]}"