diff options
Diffstat (limited to 'linters')
-rw-r--r-- | linters/lint-submodule-refs/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linters/lint-submodule-refs/Main.hs b/linters/lint-submodule-refs/Main.hs index f99f066da0..a59ea2b993 100644 --- a/linters/lint-submodule-refs/Main.hs +++ b/linters/lint-submodule-refs/Main.hs @@ -67,7 +67,7 @@ main = do when (not $ null wip) $ do T.putStrLn " Found the following non-mirrored WIP branches:" forM_ wip $ \branch -> do - commit <- gitNormCid smAbsPath branch + commit <- gitNormCid smAbsPath ("origin/" <> branch) T.putStrLn $ " - " <> branch <> " -> " <> commit T.putStrLn "" pure bad |