28df443a21
- Addressed T214: Download over HTTP - Addressed T230: No check for existing archives
10 lines
178 B
Bash
10 lines
178 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd /opt/
|
|
|
|
## Download IntelliJ IDEA Community from the jetbrain servers
|
|
wget -c https://download-cf.jetbrains.com/idea/ideaIU-2017.1.1.tar.gz
|
|
|
|
##DEBHELPER##
|