You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing z390 from the downloaded distribution file with source code, the build procedure executes RELVER.BAT
This procedure in turn - when git is not installed - fails the build procedure.
In order for a git-less environment to be able to build z390, the RELVER.BAT should ask whether to proceed or abort.
When proceeding, it should use the z390.properties in the distribution file, but it's not yet included.
So the build for the distribution needs to be modified to include the z390.properties file.
When git is installed, a different error is produced by RELVER.BAT, equally preventing the build from succeeding.
For any error encountered, RELVER.BAT should give the option of terminating, or continuing as if FORCE had been provided.
But this does require z390.properties to be included in the distro.
The text was updated successfully, but these errors were encountered:
abekornelis
changed the title
Distribution with source fails to build when git not installed
Distribution with source fails to build
Sep 15, 2024
:final
if %z_Version% EQU "Uncontrolled" (if /I "%1" NEQ "FORCE" (echo Version is uncontrolled - add FORCE parm to ignore
set z_ReturnCode=8
goto return
) else (echo Version is uncontrolled - FORCE enabled
if exist z390.properties goto return
) )
rem relver: use git to set z390.properties version details
echo z390 version %z_Version%
echo version=%z_Version%> z390.properties
set z_ReturnCode=0
When installing z390 from the downloaded distribution file with source code, the build procedure executes RELVER.BAT
This procedure in turn - when git is not installed - fails the build procedure.
In order for a git-less environment to be able to build z390, the RELVER.BAT should ask whether to proceed or abort.
When proceeding, it should use the z390.properties in the distribution file, but it's not yet included.
So the build for the distribution needs to be modified to include the z390.properties file.
When git is installed, a different error is produced by RELVER.BAT, equally preventing the build from succeeding.
For any error encountered, RELVER.BAT should give the option of terminating, or continuing as if FORCE had been provided.
But this does require z390.properties to be included in the distro.
The text was updated successfully, but these errors were encountered: