Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3a8f753
added one-liner install scripts and landing page
shodiBoy1 Mar 24, 2026
6b1744c
fixed version parsing and bash path in install script
shodiBoy1 Mar 24, 2026
62ece96
fixed install scripts to use temp dir and match documented setup flow
shodiBoy1 Mar 24, 2026
ebcced0
update website to use unified install flow with two-step setup
shodiBoy1 Mar 26, 2026
dab67df
removed PowerShell installer, single bash one-liner for all platforms
shodiBoy1 Mar 26, 2026
3e39621
fixed install.sh trap variable scope and aligned website with docs
shodiBoy1 Mar 26, 2026
c13ce2c
Merge branch 'devonfw:main' into feature/one-liner-install-and-landin…
shodiBoy1 Mar 27, 2026
71d82bf
added comments to install.sh for better readability
shodiBoy1 Mar 27, 2026
ff49b95
Merge branch 'main' into feature/one-liner-install-and-landing-page
shodiBoy1 Mar 27, 2026
9388a88
fixed broken contributing link in website
shodiBoy1 Mar 27, 2026
ed61f05
Merge remote-tracking branch 'origin/feature/one-liner-install-and-la…
shodiBoy1 Mar 27, 2026
47ac72c
fixed install script hanging during setup by connecting stdin to term…
shodiBoy1 Mar 30, 2026
88c1d45
Delete website/index.html
shodiBoy1 Mar 30, 2026
ea185d4
Delete website/style.css
shodiBoy1 Mar 30, 2026
4061c9f
Merge branch 'main' into feature/one-liner-install-and-landing-page
shodiBoy1 Mar 30, 2026
ee4435d
added one-liner quick install option to README setup section
shodiBoy1 Mar 31, 2026
5666dbc
Merge remote-tracking branch 'origin/feature/one-liner-install-and-la…
shodiBoy1 Mar 31, 2026
452548c
Merge branch 'main' into feature/one-liner-install-and-landing-page
maybeec Apr 1, 2026
870530d
Merge branch 'main' into feature/one-liner-install-and-landing-page
hohwille Apr 2, 2026
34d4a9d
handling windows git bash
shodiBoy1 Apr 3, 2026
2f42ec4
Merge remote-tracking branch 'origin/feature/one-liner-install-and-la…
shodiBoy1 Apr 3, 2026
0670ddf
merged upstream/main
shodiBoy1 Apr 3, 2026
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
9 changes: 5 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Usage: bash -c "$(curl -fsSL https://raw.githubusercontent.com/devonfw/IDEasy/main/install.sh)"
#
# What it does:
# 1. Detects your OS (mac/linux) and architecture (x64/arm64)
# 1. Detects your OS (mac/linux/windows) and architecture (x64/arm64)
# 2. Fetches the latest release version from GitHub
# 3. Downloads and extracts the correct archive to a temp directory
# 4. Runs the setup script
Expand All @@ -25,9 +25,10 @@ abort() { red "Error: $1" >&2; exit 1; }

detect_os() {
case "$(uname -s)" in
Linux*) echo "linux" ;;
Darwin*) echo "mac" ;;
*) abort "Unsupported operating system: $(uname -s). Use the PowerShell installer on Windows." ;;
Linux*) echo "linux" ;;
Darwin*) echo "mac" ;;
MINGW*|MSYS*|CYGWIN*) echo "windows" ;;
*) abort "Unsupported operating system: $(uname -s). On Windows use Git Bash." ;;
esac
}

Expand Down
Loading