From e0128b63624b11e80f21b5c7e15703f38f873f8e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 17 Sep 2024 11:40:40 -0400 Subject: [PATCH] sim: add missing parser for action sendwanted --- Annex/Sim/File.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Annex/Sim/File.hs b/Annex/Sim/File.hs index 11c66248c4..f6c28822be 100644 --- a/Annex/Sim/File.hs +++ b/Annex/Sim/File.hs @@ -195,6 +195,8 @@ parseSimAction ("action":repo:"sync":remote:rest) = mkAction rest $ ActionSync (RepoName repo) (RemoteName remote) parseSimAction ("action":repo:"getwanted":remote:rest) = mkAction rest $ ActionGetWanted (RepoName repo) (RemoteName remote) +parseSimAction ("action":repo:"sendwanted":remote:rest) = + mkAction rest $ ActionSendWanted (RepoName repo) (RemoteName remote) parseSimAction ("action":repo:"dropunwanted":rest) = mkAction rest $ ActionDropUnwanted (RepoName repo) Nothing parseSimAction ("action":repo:"dropunwanted":remote:rest) =