From 1bc2067dce954697a494692479486cea5d4bfb26 Mon Sep 17 00:00:00 2001 From: Divyansh Prakash Date: Sun, 21 Aug 2022 18:57:09 +0530 Subject: [PATCH] Fix plugin compilation command in README.md Change `slick plugin.slick plugin.go` to `../../slick plugin.slick plugin.go` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d1b00a..2487098 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ You can build the core Slick compiler just by issuing `go build` in the main fol The core Slick plugin provides implementations for quotation and quasiquotation as a built-in set of macros implemented in Slick itself. Therefore, you first need to build the Slick compiler before you can compile the Slick plugin. Proceed as follows: * Change to the directory `lib/slick`. -* Compile the Slick plugin to Go using the Slick compiler: `slick plugin.slick plugin.go`. +* Compile the Slick plugin to Go using the Slick compiler: `../../slick plugin.slick plugin.go`. * [Optional] Format the code to make it look nicer: `go fmt plugin.go`. * Build the Slick plugin: `go build -buildmode=plugin plugin.go`. * Change back to the root folder: `../..`.