diff --git a/.circleci/config.yml b/.circleci/config.yml index f77c6457..9a89695d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,8 +58,8 @@ jobs: command: | # Turn on Experimental features LATEST_TAG="${CIRCLE_TAG:1}" - sudo mkdir $HOME/.docker - sudo sh -c 'echo "{ \"experimental\": \"enabled\" }" >> $HOME/.docker/config.json' + sudo mkdir ./.docker + sudo sh -c 'echo "{ \"experimental\": \"enabled\" }" >> ./.docker/config.json' # sudo docker login --username=$DOCKERHUB_USER --password=$DOCKERHUB_PASS # diff --git a/.github/README.md b/.github/README.md index 87a0c23a..0a1da236 100644 --- a/.github/README.md +++ b/.github/README.md @@ -54,7 +54,7 @@ To download from master (*not recommended*): ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev --legacy-peer-deps +$ npm install --omit=dev ``` #### Or: Update existing dependencies ``` @@ -62,7 +62,7 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev --legacy-peer-deps +$ npm install --omit=dev ``` ### Prep for Execution RTL requires its own config file `RTL-Config.json`, to start the server and provide user authentication on the app. diff --git a/.github/docs/Core_lightning_setup.md b/.github/docs/Core_lightning_setup.md index 4b8aef36..98120d34 100644 --- a/.github/docs/Core_lightning_setup.md +++ b/.github/docs/Core_lightning_setup.md @@ -32,7 +32,7 @@ To download from master (*not recommended*): ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev --legacy-peer-deps +$ npm install --omit=dev ``` #### Or: Update existing build @@ -41,7 +41,7 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev --legacy-peer-deps +$ npm install --omit=dev ``` ### Prep for Execution RTL requires its own config file `RTL-Config.json`, to start the server and provide user authentication on the app. diff --git a/.github/docs/Eclair_setup.md b/.github/docs/Eclair_setup.md index 73feef63..7109359d 100644 --- a/.github/docs/Eclair_setup.md +++ b/.github/docs/Eclair_setup.md @@ -28,7 +28,7 @@ To download from master (*not recommended*) follow the below instructions: ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev --legacy-peer-deps +$ npm install --omit=dev ``` #### Or: Update existing build ``` @@ -36,7 +36,7 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev --legacy-peer-deps +$ npm install --omit=dev ``` ### Prep for Execution RTL requires its own config file `RTL-Config.json`, to start the server and provide user authentication on the app.