Skip to content

Commit

Permalink
Parse dst modifier correctly
Browse files Browse the repository at this point in the history
I had made a mistake and was parsing `dest` insted of `dst`
  • Loading branch information
lorenzo committed Jun 5, 2020
1 parent f6654e1 commit 0867b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Language/Docker/Parser/Run.hs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ mountArgSource = do

mountArgTarget :: Parser RunMountArg
mountArgTarget = do
label "target=" $ choice [string "target=", string "dest=", string "destination="]
label "target=" $ choice [string "target=", string "dst=", string "destination="]
MountArgTarget . TargetPath <$> stringArg

mountArgUid :: Parser RunMountArg
Expand Down

0 comments on commit 0867b58

Please sign in to comment.