This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
readonly plugin_version="1.0" | |
readonly expected_jar_checksum="checksum" | |
readonly output_file_name="plugin-name-${plugin_version}.jar" | |
readonly output_file="/tmp/${output_file_name}" | |
downloadPluginJar() { | |
# Download the new plugin JAR and store it in a temporary output file |