Ignore emacs *~ temp files
This commit is contained in:
parent
29598b8dc2
commit
8a40849e7c
|
|
@ -5,3 +5,4 @@ erl_crash.dump
|
||||||
*.ez
|
*.ez
|
||||||
docs
|
docs
|
||||||
doc
|
doc
|
||||||
|
*~
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ defmodule Mix.Tasks.Isn.Gen.Migration do
|
||||||
Mix.Task.run "app.start", args
|
Mix.Task.run "app.start", args
|
||||||
[repo] = parse_repo(args)
|
[repo] = parse_repo(args)
|
||||||
filename = "#{timestamp}_create_isn_extension.exs"
|
filename = "#{timestamp}_create_isn_extension.exs"
|
||||||
IO.inspect([repo, Mix.Project.app_path, filename])
|
|
||||||
path = Path.relative_to(migrations_path(repo), Mix.Project.app_path)
|
path = Path.relative_to(migrations_path(repo), Mix.Project.app_path)
|
||||||
file = Path.join(path, filename)
|
file = Path.join(path, filename)
|
||||||
create_directory(path)
|
create_directory(path)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue