diff options
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/src/Files.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/src/Files.hs b/compiler/src/Files.hs index 8ea943f..8a53b84 100644 --- a/compiler/src/Files.hs +++ b/compiler/src/Files.hs | |||
@@ -29,7 +29,7 @@ module Files | |||
29 | 29 | ||
30 | 30 | ||
31 | import Control.Monad (mapM) | 31 | import Control.Monad (mapM) |
32 | import Data.List (isPrefixOf, length, subsequences) | 32 | import Data.List (isPrefixOf, length, subsequences, sortOn) |
33 | import Data.Function ((&)) | 33 | import Data.Function ((&)) |
34 | import Data.Text (pack) | 34 | import Data.Text (pack) |
35 | import Data.Aeson (ToJSON) | 35 | import Data.Aeson (ToJSON) |
@@ -154,6 +154,7 @@ readDirectory root = mkNode (Path []) >>= return . AnchoredFSNode root | |||
154 | mkDirNode path canonicalPath = | 154 | mkDirNode path canonicalPath = |
155 | (listDirectory $ localPath (root /> path)) | 155 | (listDirectory $ localPath (root /> path)) |
156 | >>= mapM (mkNode . ((</) path)) | 156 | >>= mapM (mkNode . ((</) path)) |
157 | >>= return . sortOn nodeName | ||
157 | >>= return . Dir path canonicalPath | 158 | >>= return . Dir path canonicalPath |
158 | 159 | ||
159 | copyTo :: FilePath -> AnchoredFSNode -> IO () | 160 | copyTo :: FilePath -> AnchoredFSNode -> IO () |