1
0
Fork 0
forked from lthn/blockchain

build system: added a href to emails for all platforms

This commit is contained in:
sowle 2023-03-31 15:00:41 +02:00
parent 68901d469a
commit 0ddac854a5
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
4 changed files with 4 additions and 4 deletions

View file

@ -137,7 +137,7 @@ fi
read checksum <<< $(sha256sum $package_filename | awk '/^/ { print $1 }' )
mail_msg="New ${build_prefix_label}${testnet_label}${copy_qt_dev_tools_label}build for linux-x64:<br>
https://build.zano.org/builds/$package_filename<br>
<a href='https://build.zano.org/builds/$package_filename'>https://build.zano.org/builds/$package_filename</a><br>
sha256: $checksum"
echo "$mail_msg"

View file

@ -149,7 +149,7 @@ fi
read checksum <<< $(sha256sum $package_filename | awk '/^/ { print $1 }' )
mail_msg="New ${build_prefix_label}${testnet_label}${copy_qt_dev_tools_label}build for linux-x64:<br>
https://build.zano.org/builds/$package_filename<br>
<a href='https://build.zano.org/builds/$package_filename'>https://build.zano.org/builds/$package_filename</a><br>
sha256: $checksum"
echo "$mail_msg"

View file

@ -160,7 +160,7 @@ fi
read checksum <<< $( shasum -a 256 $package_filepath | awk '/^/ { print $1 }' )
mail_msg="New ${build_prefix_label}${testnet_label}build for macOS-x64:<br>
https://build.zano.org/builds/$package_filename<br>
<a href='https://build.zano.org/builds/$package_filename'>https://build.zano.org/builds/$package_filename</a><br>
sha256: $checksum"
echo "$mail_msg"

View file

@ -192,7 +192,7 @@ IF %ERRORLEVEL% NEQ 0 (
)
call :sha256 %build_zip_path% build_zip_checksum
set mail_msg="New %build_prefix% %TESTNET_LABEL%build for win-x64:<br>INST: https://build.zano.org/builds/%installer_file% <br>sha256: %installer_checksum%<br><br>ZIP: https://build.zano.org/builds/%build_zip_filename% <br>sha256: %build_zip_checksum%<br>"
set mail_msg="New %build_prefix% %TESTNET_LABEL%build for win-x64:<br>INST: <a href='https://build.zano.org/builds/%installer_file%'>https://build.zano.org/builds/%installer_file%</a> <br>sha256: %installer_checksum%<br><br>ZIP: <a href='https://build.zano.org/builds/%build_zip_filename%>https://build.zano.org/builds/%build_zip_filename%</a> <br>sha256: %build_zip_checksum%<br>"
echo %mail_msg%