From 435f1aff3c38b69d8e9ebc06ef43c4a0104bff2c Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 21 Jul 2023 10:54:45 +0200 Subject: [PATCH] rename the executable to reploy --- Dockerfile | 2 +- reploy.cabal | 2 +- site.hs => reploy.hs | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename site.hs => reploy.hs (100%) diff --git a/Dockerfile b/Dockerfile index 3fba1ec..e3fb80f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,4 +31,4 @@ WORKDIR /data COPY assets /data/assets/ COPY templates /data/templates/ COPY pages /data/pages/ -ENTRYPOINT ["/root/.cabal/bin/site"] +ENTRYPOINT ["/root/.cabal/bin/reploy"] diff --git a/reploy.cabal b/reploy.cabal index 12a123a..247e06e 100644 --- a/reploy.cabal +++ b/reploy.cabal @@ -9,7 +9,7 @@ license: Apache-2.0 license-file: LICENSE executable site - main-is: site.hs + main-is: reploy.hs other-modules: Types, Utils, FormatOpts build-depends: base == 4.* , aeson diff --git a/site.hs b/reploy.hs similarity index 100% rename from site.hs rename to reploy.hs