Skip to content

Commit

Permalink
Fix yaws_vdir.erl include directive
Browse files Browse the repository at this point in the history
Recent versions of rebar were correctly unhappy with a malformed
include_lib in yaws_vdir.erl. Looks like this file was missed in a
previous edit to fix this problem. Changed to a regular include
instead, matching other source files.
  • Loading branch information
vinoski committed Aug 23, 2015
1 parent 6713aa8 commit 4046f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yaws_vdir.erl
Expand Up @@ -2,7 +2,7 @@

-export([arg_rewrite/1]).

-include_lib("../include/yaws_api.hrl").
-include("../include/yaws_api.hrl").

-export([join/2]).

Expand Down

0 comments on commit 4046f0d

Please sign in to comment.