From c72488ecad265c14fd21f32f2a26b24a6b371e16 Mon Sep 17 00:00:00 2001 From: BitcoinMitchell Date: Mon, 19 Feb 2024 23:11:12 +0100 Subject: [PATCH] [Core] Add the README.md to /docs as well --- .gitignore | 1 + Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8d0f77a..7a4cc62 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ docker-compose.yml # Ignore files in the module that are added via `make` /modules/btcpay/LICENSE /modules/btcpay/README.md +/modules/btcpay/docs/README.md # We dont care about the lib/vendor folder /modules/btcpay/lib/ diff --git a/Makefile b/Makefile index 0590e07..77fef0d 100644 --- a/Makefile +++ b/Makefile @@ -28,8 +28,9 @@ build: ## Build the bastard binary file # Copy the license to the module @cp ./LICENSE "$(MODULE_FOLDER)/$(MODULE)" - # Copy the README to the module + # Copy the README to the module root and docs @cp ./README.md "$(MODULE_FOLDER)/$(MODULE)" + @cp ./README.md "$(MODULE_FOLDER)/$(MODULE)/docs" # Zip the module @cd $(MODULE_FOLDER) \