Skip to content

Commit

Permalink
Merge pull request #1 from maximvl/master
Browse files Browse the repository at this point in the history
Fixed fdlink_executable sometimes had returned relative path.
  • Loading branch information
proger committed May 25, 2015
2 parents a476e92 + a451ffe commit 2c179f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/erlsh.erl
Expand Up @@ -2,7 +2,7 @@
-export([oneliner/1, oneliner/2, run/1, run/2, run/3, run/4, fdlink_executable/0]).

fdlink_executable() ->
filename:join(code:priv_dir(erlsh), "fdlink").
filename:absname(filename:join(code:priv_dir(erlsh), "fdlink")).

oneliner(C) ->
run(C, ignoreeol, ".").
Expand Down

0 comments on commit 2c179f0

Please sign in to comment.