diff options
-rw-r--r-- | README.org | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -36,14 +36,14 @@ Download the Docker image from [[https://github.com/arunisaac/ccwl/releases][the it. Then, run ccwl with command-line arguments of your choice. #+BEGIN_SRC shell $ docker load -i ccwl-docker.tar.gz - $ docker run ccwl [ARGS...] + $ docker run ccwl ccwl [ARGS...] #+END_SRC When passing files into the Docker container, remember to share the filesystem. The following command is one way to share the current directory with the container. #+BEGIN_SRC shell - $ docker run -v "$PWD:$PWD" -w "$PWD" ccwl compile foo.scm + $ docker run -v "$PWD:$PWD" -w "$PWD" ccwl ccwl compile foo.scm #+END_SRC ** Using Guix @@ -80,8 +80,11 @@ introduction to ccwl. * Contributing Feedback, suggestions, feature requests, bug reports and pull requests -are all welcome. Unclear and unspecific error messages are considered -a bug. Do report them! +are all welcome. Please write to [[mailto:ccwl@systemreboot.net][ccwl@systemreboot.net]]. You may also +browse the [[https://lists.systemreboot.net/ccwl][archives]] of previous discussions. Unclear and unspecific +error messages are considered a bug. Do report them! + +We do not accept issues or pull requests on GitHub. Thank you! To hack on ccwl, you can use GNU Guix to quickly drop into a development environment by running |