11 lines
178 B
Text
11 lines
178 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd /opt/
|
||
|
|
||
|
## Download IntelliJ IDEA Community from the JetBrain servers
|
||
|
wget -c https://download-cf.jetbrains.com/idea/ideaIC-2017.1.1.tar.gz
|
||
|
|
||
|
##DEBHELPER##
|