From a5891f9884f42a048cd0b700e40f1c09e9ab326b Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 12 Jan 2022 23:14:19 -0800 Subject: [PATCH] Update development docs for current repository The original location of the project repository was `bcmi-labs/arduino-editor` and some of the internal development documentation for the project contains references to the repository. This documentation was not updated at the time the repository was moved to the current home in `arduino/arduino-ide`. --- docs/internal/Arm.md | 6 +++--- docs/internal/Ubuntu.md | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/internal/Arm.md b/docs/internal/Arm.md index f95cf926..95642c19 100644 --- a/docs/internal/Arm.md +++ b/docs/internal/Arm.md @@ -42,10 +42,10 @@ Building the Pro IDE on Linux `armv7l` (aka `armhf`) and `aarch64` (aka `arm64`) - `libx11-dev`, and - `libxkbfile-dev` -4. [Build it](https://github.com/bcmi-labs/arduino-editor#build-from-source) from the source: +4. [Build it](../../BUILDING.md#build-from-source) from the source: ``` - git clone https://github.com/bcmi-labs/arduino-editor.git \ - && cd arduino-editor \ + git clone https://github.com/arduino/arduino-ide.git \ + && cd arduino-ide \ && yarn \ && yarn rebuild:electron \ && yarn --cwd ./electron-app start diff --git a/docs/internal/Ubuntu.md b/docs/internal/Ubuntu.md index 9aba9b20..d4ba2554 100644 --- a/docs/internal/Ubuntu.md +++ b/docs/internal/Ubuntu.md @@ -1,6 +1,6 @@ ### Building and start the app from the sources on Ubuntu Linux -Tested and verified on Ubuntu 18.04.4. The source will be checked out to `~/dev/git/arduino-editor`. +Tested and verified on Ubuntu 18.04.4. The source will be checked out to `~/dev/git/arduino-ide`. ``` #!/bin/bash -i @@ -25,9 +25,9 @@ sudo apt update \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list \ && sudo apt update && sudo apt install --no-install-recommends yarn \ && mkdir -p ~/dev/git/ \ -&& rm -rf ~/dev/git/arduino-editor \ -&& git clone --depth 1 https://github.com/bcmi-labs/arduino-editor.git ~/dev/git/arduino-editor \ -&& yarn --cwd ~/dev/git/arduino-editor \ -&& yarn --cwd ~/dev/git/arduino-editor rebuild:electron \ -&& yarn --cwd ~/dev/git/arduino-editor/electron-app start +&& rm -rf ~/dev/git/arduino-ide \ +&& git clone --depth 1 https://github.com/arduino/arduino-ide.git ~/dev/git/arduino-ide \ +&& yarn --cwd ~/dev/git/arduino-ide \ +&& yarn --cwd ~/dev/git/arduino-ide rebuild:electron \ +&& yarn --cwd ~/dev/git/arduino-ide/electron-app start ```