Files
zx/install_unix
T
2018-01-11 19:09:31 +09:00

10 lines
195 B
Bash
Executable File

#! /bin/sh
if escript_path=$(command -v escript)
then
echo "Using escript found at $escript_path"
escript install.escript
else
echo "Could not locate an Erlang installation."
fi