Skip to content

Commit e397bff

Browse files
committed
Update comments
1 parent 7e197d5 commit e397bff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

booster/tools/rpc-client/RpcClient.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,11 +542,11 @@ runTarball common (Just sock) tarFile keepGoing runOnly compareDetails = do
542542
throwAnyError :: Either Tar.FormatError Tar.FileNameError -> IO a
543543
throwAnyError = either throwIO throwIO
544544

545-
-- unpack all rpc_*/*.json files into dir and return their names
545+
-- unpack all */*.json files into dir and return their names
546546
unpackIfRpc :: FilePath -> Tar.Entry -> IO [FilePath] -> IO [FilePath]
547547
unpackIfRpc tmpDir entry acc = do
548548
case splitFileName (Tar.entryPath entry) of
549-
-- unpack all directories "rpc_<something>" containing "*.json" files
549+
-- unpack all directories "<something>" containing "*.json" files
550550
(dir, "") -- directory
551551
| Tar.Directory <- Tar.entryContent entry -> do
552552
createDirectoryIfMissing True dir -- create rpc dir so we can unpack files there

0 commit comments

Comments
 (0)