9 lines
194 B
Bash
Executable File
9 lines
194 B
Bash
Executable File
#!/bin/bash -
|
|
set -e
|
|
set -x
|
|
|
|
# Compile trivial augeas program.
|
|
echo 'Augeas.create "/" None [AugNoLoad]' > augtest.ml
|
|
ocamlfind ocamlopt -package augeas augtest.ml -linkpkg -o augtest
|
|
./augtest
|