Skip to content

Commit f1cceeb

Browse files
committed
Remove restriction on executable output names containing a .
1 parent ab84453 commit f1cceeb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Main.gren

+1-4
Original file line numberDiff line numberDiff line change
@@ -778,11 +778,8 @@ outputParser =
778778
else if String.endsWith ".js" str then
779779
Just <| CompilerBlob.Js str
780780

781-
else if not <| String.contains "." str then
782-
Just <| CompilerBlob.Exe str
783-
784781
else
785-
Nothing
782+
Just <| CompilerBlob.Exe str
786783
, examples =
787784
[ "/dev/stdout"
788785
, "/dev/null"

0 commit comments

Comments
 (0)