diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-24 09:37:52 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-24 15:37:08 +0200 |
commit | a5f20f40840a0cbc1580261bff3d3a7fd2cdc29b (patch) | |
tree | 49a26ca92417e1d9151ea2c5508f7dbc46a6e45f /src/Command/Log.hs | |
parent | 76370492c9c0cdbb51b4f7c14e082c04b0b223d5 (diff) |
Parse parentheses in job reference
Diffstat (limited to 'src/Command/Log.hs')
-rw-r--r-- | src/Command/Log.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Command/Log.hs b/src/Command/Log.hs index 92866d4..5d8c9d4 100644 --- a/src/Command/Log.hs +++ b/src/Command/Log.hs @@ -30,7 +30,7 @@ instance Command LogCommand where [ "Usage: minici log <job ref>" ] - commandInit _ _ = LogCommand . JobRef . T.splitOn "." + commandInit _ _ = LogCommand . parseJobRef commandExec = cmdLog |