Fix error in script.

This commit is contained in:
Dillon Kearns 2023-01-08 11:44:09 -08:00
parent 9fa1f76eba
commit fd08eda9f7

View File

@ -1,5 +1,6 @@
module Cli exposing (run)
import BackendTask
import Cli.Option as Option
import Cli.OptionsParser as OptionsParser
import Cli.Program as Program
@ -31,6 +32,7 @@ run =
{ path = "app/" ++ file.path
, body = file.contents
}
|> BackendTask.throw
)