Skip to content

Commit

Permalink
Typo in Dockerfile generator
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewDryga committed Aug 13, 2016
1 parent 42ad052 commit cea7278
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Your migrations will be preserved within container in `./priv/repo` folder.
Install this package globally:

```
mix archive.install https://github.com/Nebo15/renew/releases/download/0.4.0/renew.ez
mix archive.install https://github.com/Nebo15/renew/releases/download/0.5.0/renew.ez
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/renew.ex
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ defmodule Mix.Tasks.Renew do
# Clean sources, but save migrations for Ecto.Migrator
RUN if [ -d "priv" ]; then mkdir rel/priv; mv priv/* rel/priv; fi
RUN find . -maxdepth 1 -not -name "rel" -not -name "." -exec rm -rf {} \;
RUN find . -maxdepth 1 -not -name "rel" -not -name "." -exec rm -rf {} \\;
RUN mv rel/* ./
RUN rm config.exs
RUN rm -r rel
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Renew.Mixfile do
use Mix.Project

@version "0.4.0"
@version "0.5.0"

def project do
[app: :renew,
Expand Down

0 comments on commit cea7278

Please sign in to comment.