diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-05-15 13:03:12 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-05-15 13:03:12 +0200 |
commit | 5d38dd48cc8e5349803064eb521117b3f20b3c74 (patch) | |
tree | d1e9785b40a1e5ee868b548073381c5c3f7200b5 | |
parent | 72dfd7bdb13e71c04604c0458582960259ec8fbf (diff) | |
download | trivmix-5d38dd48cc8e5349803064eb521117b3f20b3c74.tar trivmix-5d38dd48cc8e5349803064eb521117b3f20b3c74.tar.gz trivmix-5d38dd48cc8e5349803064eb521117b3f20b3c74.tar.bz2 trivmix-5d38dd48cc8e5349803064eb521117b3f20b3c74.tar.xz trivmix-5d38dd48cc8e5349803064eb521117b3f20b3c74.zip |
Shorten '--level' to '-l'
-rw-r--r-- | adjmix/Adjmix.hs | 2 | ||||
-rw-r--r-- | trivmix.cabal | 2 | ||||
-rw-r--r-- | trivmix.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/adjmix/Adjmix.hs b/adjmix/Adjmix.hs index cd5f4e4..5133973 100644 --- a/adjmix/Adjmix.hs +++ b/adjmix/Adjmix.hs | |||
@@ -28,7 +28,7 @@ optionParser = do | |||
28 | , help "Base directory" | 28 | , help "Base directory" |
29 | ] | 29 | ] |
30 | levelFile <- strOption $ mconcat | 30 | levelFile <- strOption $ mconcat |
31 | [ long "level", metavar "FILENAME", showDefault | 31 | [ long "level", short 'l', metavar "FILENAME", showDefault |
32 | , value "level" | 32 | , value "level" |
33 | , help "Filename of the level file" | 33 | , help "Filename of the level file" |
34 | ] | 34 | ] |
diff --git a/trivmix.cabal b/trivmix.cabal index d075871..0ff3f01 100644 --- a/trivmix.cabal +++ b/trivmix.cabal | |||
@@ -2,7 +2,7 @@ | |||
2 | -- documentation, see http://haskell.org/cabal/users-guide/ | 2 | -- documentation, see http://haskell.org/cabal/users-guide/ |
3 | 3 | ||
4 | name: trivmix | 4 | name: trivmix |
5 | version: 3.0.0 | 5 | version: 3.1.0 |
6 | -- synopsis: | 6 | -- synopsis: |
7 | -- description: | 7 | -- description: |
8 | license: PublicDomain | 8 | license: PublicDomain |
diff --git a/trivmix.nix b/trivmix.nix index a823793..0882731 100644 --- a/trivmix.nix +++ b/trivmix.nix | |||
@@ -5,7 +5,7 @@ | |||
5 | }: | 5 | }: |
6 | mkDerivation { | 6 | mkDerivation { |
7 | pname = "trivmix"; | 7 | pname = "trivmix"; |
8 | version = "3.0.0"; | 8 | version = "3.1.0"; |
9 | src = ./.; | 9 | src = ./.; |
10 | isLibrary = true; | 10 | isLibrary = true; |
11 | isExecutable = true; | 11 | isExecutable = true; |