Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Commit

Permalink
Fix Call to Elm Format in 0.18 Upgrade Script
Browse files Browse the repository at this point in the history
  • Loading branch information
prikhi committed Nov 14, 2016
1 parent 225fbe4 commit d7b06d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_018_elm_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def upgrade_elm_files(root_folder):
def run_elm_format(root_folder):
from subprocess import call
os.chdir(root_folder)
call(["elm-format", "--version=0.18"])
call(["elm-format", ".", "--upgrade", "--yes", "--elm-version=0.18"])


def run_elm_make(root_folder):
Expand Down

0 comments on commit d7b06d9

Please sign in to comment.