From 1eb2dca7e832cbf7c9b24b8277c4db06ef6c14e0 Mon Sep 17 00:00:00 2001 From: Sebastian Guaqueta Date: Wed, 18 Dec 2024 15:50:18 -0500 Subject: [PATCH] feat/ omiting comment section on readme --- .github/workflows/devportal-update.yml | 2 +- docs/integrate.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devportal-update.yml b/.github/workflows/devportal-update.yml index 27fe3ca9..02be1737 100644 --- a/.github/workflows/devportal-update.yml +++ b/.github/workflows/devportal-update.yml @@ -39,7 +39,7 @@ jobs: TEMP_FILE="temp_README.md" tail -n +1 README.md > ${TEMP_FILE} # Remove the lines between - sed '//d' README.md > ${TEMP_FILE} + awk '//{next} {print}' README.md > ${TEMP_FILE} # Process main README.md TRANSFORMED_FILE="transformed/README.md" diff --git a/docs/integrate.md b/docs/integrate.md index 99d3367a..05bef5e0 100644 --- a/docs/integrate.md +++ b/docs/integrate.md @@ -289,4 +289,4 @@ To implement and use your own replenish strategy: 1. In the folder `src` from the RIF Relay Server project, open `ReplenishFunction.ts` with a text editor. 2. On the function `replenishStrategy` write your new replenish strategy. 3. Re build the project `npm run build` -4. Change the config JSON file to set `customReplenish` on true. \ No newline at end of file +4. Change the config JSON file to set `customReplenish` on true.