Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git

Removes Windows build

AuthorDaveJarvis <email>
Date2025-08-27 18:18:24 GMT-0700
Commitcc69f259bc9e87377c6df2db5a9450a2fad80fcb
Parent0312aa8
Delta3 lines added, 19 lines removed, 16-line decrease
installer.sh
# ---------------------------------------------------------------------------
utile_sign_windows() {
- local -r FILE_CERTIFICATE="${SCRIPT_DIR}/tokens/code-sign-cert.pfx"
- local -r FILE_BINARY="${APP_NAME}.exe"
- local -r FILE_SIGNED_BINARY="signed-${FILE_BINARY}"
-
- rm -f "${FILE_SIGNED_BINARY}"
-
- $log "Sign ${FILE_BINARY}"
- ${SCRIPT_DIR}/bin/osslsigncode sign \
- -pkcs12 "${FILE_CERTIFICATE}" \
- -askpass \
- -n "${APP_NAME}" \
- -i "https://www.${APP_NAME_LC}.com" \
- -in "${FILE_BINARY}" \
- -out "${FILE_SIGNED_BINARY}"
-
- $log "Rename ${FILE_SIGNED_BINARY} to ${FILE_BINARY}"
- mv -f "${FILE_SIGNED_BINARY}" "${FILE_BINARY}"
+ # Removed until costs are covered.
}
release.sh
${BIN_INSTALLER} -o macos
- $log "Build Windows installer binary"
- ${BIN_INSTALLER} -o windows
+ #$log "Build Windows installer binary"
+ #${BIN_INSTALLER} -o windows
}