9 lines
207 B
Bash
9 lines
207 B
Bash
|
#!/bin/bash -
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
# Compile trivial fileutils program.
|
||
|
echo 'assert (FilePath.compare "/" "/" = 0)' > filetest.ml
|
||
|
ocamlfind ocamlopt -package fileutils filetest.ml -linkpkg -o filetest
|
||
|
./filetest
|