-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58f24dc
commit c6a752a
Showing
3 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module Which exposing (run) | ||
|
||
import BackendTask exposing (BackendTask) | ||
import Pages.Script as Script exposing (Script, doThen, sleep) | ||
import Pages.Script.Spinner as Spinner | ||
|
||
|
||
run : Script | ||
run = | ||
Script.withoutCliOptions | ||
(Script.expectWhich "elm" | ||
|> BackendTask.andThen | ||
(\elmPath -> | ||
Script.log elmPath | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters