Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#921: fixed setup.bat #922

Merged
merged 2 commits into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@

This file documents all notable changes to https://github.com/devonfw/ide[devonfw-ide].

== 2022.08.003

Urgent bugfix release:

* https://github.com/devonfw/ide/issues/921[#921]: Setup fails on windows: repository '_isNew' does not exist

The full list of changes for this release can be found in https://github.com/devonfw/ide/milestone/33?closed=1[milestone 2022.08.003].

== 2022.08.002

Release in process:
New release with various improvements and bugfixes:

* https://github.com/devonfw/ide/issues/833[#833]: Implementing GitHub CLI
* https://github.com/devonfw/ide/issues/894[#894]: Integration of Quarkus CLI
Expand All @@ -17,7 +25,7 @@ Release in process:
* https://github.com/devonfw/ide/issues/880[#880]: Customize the trigger of the integration tests
* https://github.com/devonfw/ide/issues/879[#879]: Renaming integration-tests and adding badges
* https://github.com/devonfw/ide/issues/751[#751]: Documentation of functions
* https://github.com/devonfw/ide/pull/914[#914]: Tools Documentation Update
* https://github.com/devonfw/ide/pull/914[#914]: Tools Documentation Update

The full list of changes for this release can be found in https://github.com/devonfw/ide/milestone/32?closed=1[milestone 2022.08.002].

Expand Down
13 changes: 7 additions & 6 deletions scripts/src/main/resources/setup.bat
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
@echo off
if NOT "%DEVON_IDE_TRACE%"=="" echo on

Set _fBGreen=
Set _RESET=
set _fBGreen=
set _RESET=

IF NOT %1.==_isNew. (
echo %PSModulePath% | findstr %USERPROFILE% >NUL
IF %ERRORLEVEL% EQU 0 start "CMD window" "%~f0" _isNew & goto :EOF
echo %PSModulePath% | findstr %USERPROFILE% >NUL
if "%ERRORLEVEL%" == "0" (
set PSModulePath=%PSModulePath:*;=%
start "CMD window" "%~f0"
goto :EOF
)
echo Running from cmd.exe...

pushd %~dp0
echo Setting up your devonfw-ide in %CD%
Expand Down