Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git
M release.sh
1818
1919
execute() {
20
  $log "Remove distribution directory"
21
  rm -rf "${SCRIPT_DIR}/dist"
22
23
  $log "Remove stale binaries"
24
  rm -f "${application_title,,}.jar"
25
  rm -f "${application_title,,}.bin"
26
  rm -f "${application_title}.exe"
27
28
  $log "Build Java archive"
29
  gradle clean jar
30
  mv "build/libs/${application_title,,}.jar" .
31
2032
  $log "Build Windows installer binary"
2133
  ${BIN_INSTALLER} -o windows
2234
2335
  $log "Build Linux installer binary"
2436
  ${BIN_INSTALLER} -o linux
25
26
  $log "Build Java archive"
27
  gradle clean jar
28
  mv "build/libs/${application_title}.jar" .
2937
}
3038
...
3947
  done < "${FILE_PROPERTIES}"
4048
41
  application_title="${application_title,,}"
49
  application_title="${application_title}"
4250
4351
  return 1