mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-21 01:00:54 +08:00
16 lines
554 B
Bash
Executable File
16 lines
554 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat <<EOF >.idea-repository.xml
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<plugins>
|
|
<plugin id="org.teavm.idea" url="https://dl.bintray.com/konsoletyper/teavm/org/teavm/teavm-idea/$NEW_VERSION/teavm-idea-$NEW_VERSION.zip" version="$NEW_VERSION">
|
|
<idea-version since-build="163.12024.16" until-build="172.*" />
|
|
<description>TeaVM support</description>
|
|
</plugin>
|
|
</plugins>
|
|
EOF
|
|
|
|
curl --ftp-create-dirs -T .idea-repository.xml \
|
|
-u $TEAVM_FTP_LOGIN:$TEAVM_FTP_PASSWORD \
|
|
ftp://$TEAVM_FTP_HOST/httpdocs/idea/dev/teavmRepository.xml
|