Skip to content

Commit

Permalink
sap_swpm: Use 'false' instead of 'False' in inifile.params
Browse files Browse the repository at this point in the history
Fixes issue #915.

Signed-off-by: Bernd Finger <[email protected]>
  • Loading branch information
berndfinger committed Dec 17, 2024
1 parent ce6c499 commit 221d71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/sap_swpm/templates/inifile_params.j2
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ UmeConfiguration.umeType = {{ sap_swpm_ume_type }}
# BEGIN section nw_config_java_feature_template_ids #
# #
NW_internal.useProductVersionDescriptor = true
nw_java_import.buildJEEusingExtraMileTool = {{ true if sap_swpm_java_import_method == 'extramile' else false }}
nw_java_import.buildJEEusingExtraMileTool = {{ 'true' if sap_swpm_java_import_method == 'extramile' else 'false' }}

# If use PV = true
# SAP SWPM 1.0 for SAP NetWeaver AS (JAVA), Product Version Software Instance **Feature Template IDs** comma-separated list
Expand Down

0 comments on commit 221d71f

Please sign in to comment.