aboutsummaryrefslogtreecommitdiff
path: root/src/lustre_build_ffi.erl
blob: 9a7e2801ef2d47460fd90b45102323018f1258d6 (plain)
1
2
3
4
5
6
7
8
9
-module(lustre_build_ffi).
-export([
    exec/1
]).

exec(Cmd) ->
    Stdout = os:cmd(unicode:characters_to_list(Cmd)),

    unicode:characters_to_binary(Stdout).