Skip to content

Commit a5891f9

Browse files
committed
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`.
1 parent fcdf16a commit a5891f9

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/internal/Arm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ Building the Pro IDE on Linux `armv7l` (aka `armhf`) and `aarch64` (aka `arm64`)
4242
- `libx11-dev`, and
4343
- `libxkbfile-dev`
4444
45-
4. [Build it](https://github.com/bcmi-labs/arduino-editor#build-from-source) from the source:
45+
4. [Build it](../../BUILDING.md#build-from-source) from the source:
4646
```
47-
git clone https://github.com/bcmi-labs/arduino-editor.git \
48-
&& cd arduino-editor \
47+
git clone https://github.com/arduino/arduino-ide.git \
48+
&& cd arduino-ide \
4949
&& yarn \
5050
&& yarn rebuild:electron \
5151
&& yarn --cwd ./electron-app start

docs/internal/Ubuntu.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Building and start the app from the sources on Ubuntu Linux
22

3-
Tested and verified on Ubuntu 18.04.4. The source will be checked out to `~/dev/git/arduino-editor`.
3+
Tested and verified on Ubuntu 18.04.4. The source will be checked out to `~/dev/git/arduino-ide`.
44

55
```
66
#!/bin/bash -i
@@ -25,9 +25,9 @@ sudo apt update \
2525
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list \
2626
&& sudo apt update && sudo apt install --no-install-recommends yarn \
2727
&& mkdir -p ~/dev/git/ \
28-
&& rm -rf ~/dev/git/arduino-editor \
29-
&& git clone --depth 1 https://github.com/bcmi-labs/arduino-editor.git ~/dev/git/arduino-editor \
30-
&& yarn --cwd ~/dev/git/arduino-editor \
31-
&& yarn --cwd ~/dev/git/arduino-editor rebuild:electron \
32-
&& yarn --cwd ~/dev/git/arduino-editor/electron-app start
28+
&& rm -rf ~/dev/git/arduino-ide \
29+
&& git clone --depth 1 https://github.com/arduino/arduino-ide.git ~/dev/git/arduino-ide \
30+
&& yarn --cwd ~/dev/git/arduino-ide \
31+
&& yarn --cwd ~/dev/git/arduino-ide rebuild:electron \
32+
&& yarn --cwd ~/dev/git/arduino-ide/electron-app start
3333
```

0 commit comments

Comments
 (0)