Skip to content

Commit e5aaa1b

Browse files
feature/wikirunnerRestoreDevonfwIde (devonfw-tutorials#232)
Added restoreDevonfwIde operation to wikirunner
1 parent f7014d4 commit e5aaa1b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

runners/wikiConsole/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ export class WikiConsole extends WikiRunner {
2929
return null;
3030
}
3131

32+
runRestoreDevonfwIde(runCommand: RunCommand): RunResult {
33+
return this.runInstallDevonfwIde(runCommand);
34+
}
3235

3336
runChangeFile(runCommand: RunCommand): RunResult{
3437
let workspacePath = this.getVariable(this.workspaceDirectory).replace(/\\/g, "/");

runners/wikiConsole/templates/installDevonfwIde.asciidoc

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
== devonfw setup
22

3-
3+
If you already installed the devonfw IDE, you can skip this step.
44

55
=== Prerequisites
66

@@ -11,7 +11,6 @@ Create a new directory in the location where you want to install the devonfw IDE
1111

1212
=== Download
1313

14-
1514
<% if(version) {%>
1615

1716
Now you have to download version <%= version; %> of the devonfw IDE. You can download it from https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=com.devonfw.tools.ide&a=devonfw-ide-scripts&v=<%= version; %>&p=tar.gz[here].
@@ -41,7 +40,7 @@ After that you need to extract the downloaded file. To do this, run `tar -xvzf d
4140
First, you need to prepare a settings repository to specify the tools to be installed within the devonfw IDE. Normally this is done by your project. If you just want to test the devonfw IDE, you can use the default URL, which is https://github.com/devonfw/ide-settings.
4241

4342
For now clone the repository on https://github.com/devonfw/ide-settings or your own fork of it.
44-
For this tutorial you have to write `DEVON_IDE_TOOLS=(<%= tools; %>)` into the devon.properties file of the cloned settings repository. These settings will now be passed into the installation process of the devonfw IDE.
43+
For this tutorial you have to write `DEVON_IDE_TOOLS=(<%= tools; %>)` into the devon.properties file of the cloned settings repository. These settings will now be passed into the installation process of the devonfw-ide.
4544
Start the setup process by executing `.\setup 'path/to/settings'` (Windows) or `bash setup path/to/settings.git` (Linux).
4645

4746
You can also just execute `.\setup` (Windows) or `bash setup` (Linux) and press Enter when the setup assistent asks for the URL to the settings repository. This will also download the default settings and install the default tools within the devonfw IDE.

0 commit comments

Comments
 (0)