Skip to content

Commit

Permalink
Include an (arbitrary) version number
Browse files Browse the repository at this point in the history
Without a version number in .app.src, rebar will not compile the
application unless it is also a Git repository. This means that
packaged code will fail to build with rebar. Including a version
number fixes the problem. 0.1.0 seems like a reasonable start.
  • Loading branch information
evanmiller committed Mar 26, 2013
1 parent 9b2d352 commit fe7d779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ddb.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{application, ddb,
[
{description, "AWS DynamoDB client"},
{vsn, git},
{vsn, "0.1.0"},
{registered, [ddb_sup]},
{applications, [
kernel,
Expand Down

0 comments on commit fe7d779

Please sign in to comment.