Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE

Release with new features and bugfixes:

* https://github.com/devonfw/IDEasy/issues/1185[#1185]: Fix icd not working in zsh on older macOS
* https://github.com/devonfw/IDEasy/issues/1754[#1754]: Add version support to vscode plugins
* https://github.com/devonfw/IDEasy/issues/796[#796]: cannot install aws on Mac
* https://github.com/devonfw/IDEasy/issues/1800[#1800]: IDEasy will automatically switch to IntelliJ standard edition when installing newer ultimate edition versions
Expand Down
4 changes: 2 additions & 2 deletions cli/src/main/package/functions
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function ide() {
}

function icd() {
if [ $# = 1 ] && [ "${1::1}" != "-" ]; then
if [ $# = 1 ] && [ "${1:0:1}" != "-" ]; then
cd $1 || return 1
ide
return
Expand All @@ -56,7 +56,7 @@ function icd() {
;;
-w|--workspace)
shift
if [ $# != 0 ] && [ "${1::1}" != "-" ]; then
if [ $# != 0 ] && [ "${1:0:1}" != "-" ]; then
icd_workspace=$1
shift
else
Expand Down
Loading