We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab73bc9 commit 1bff02dCopy full SHA for 1bff02d
src/Spago/Bower.hs
@@ -60,7 +60,9 @@ generateBowerJson = do
60
die [ path <> " is being ignored by git - change this before continuing" ]
61
62
logInfo "Generated a valid Bower config using the package set"
63
- pure bowerJson
+ pure $ case OS.buildOS of
64
+ OS.Windows -> Text.replace "\n" "\r\n" bowerJson
65
+ _ -> bowerJson
66
67
68
runBowerInstall :: (HasLogFunc env, HasBower env) => RIO env ()
0 commit comments