Skip to content

Commit c59672e

Browse files
authored
bug fix on cloud platform variable in supported libraries
1 parent 09643d3 commit c59672e

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
<p>The default environment supports the following libraries:</p>
2-
<? include(DOCS_RESOURCES."/libraries/supported-libraries.php"); ?>
2+
<?
3+
$isCloudPlatform = true;
4+
include(DOCS_RESOURCES."/libraries/supported-libraries.php");
5+
?>
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
<p>The default environment supports the following libraries:</p>
2-
<? include(DOCS_RESOURCES."/libraries/supported-libraries.php"); ?>
2+
<?
3+
$isCloudPlatform = false;
4+
include(DOCS_RESOURCES."/libraries/supported-libraries.php");
5+
?>
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
<p>The default environment supports the following libraries:</p>
2-
<? include(DOCS_RESOURCES."/libraries/supported-libraries.php"); ?>
2+
<?
3+
$isCloudPlatform = true;
4+
include(DOCS_RESOURCES."/libraries/supported-libraries.php");
5+
?>

05 Lean CLI/06 Projects/08 Libraries/01 Third-Party Libraries/02 Supported Libraries for AMD64 Systems.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@
55
The following libraries are available on AMD64-based systems:
66
</p>
77

8-
<? include(DOCS_RESOURCES."/libraries/supported-libraries.php"); ?>
8+
<?
9+
$isCloudPlatform = false;
10+
include(DOCS_RESOURCES."/libraries/supported-libraries.php");
11+
?>

Resources/libraries/supported-libraries.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ traitlets 5.14.2
711711
RestSharp 106.12.0
712712
SharpZipLib 1.3.3
713713
System.ComponentModel.Composition 6.0.0
714-
<? if ($cloudPlatform) { ?>
714+
<? if ($isCloudPlatform) { ?>
715715
Accord.Audio 3.6.0
716716
Accord.Genetic 3.6.0
717717
Accord.MachineLearning.GPL 3.6.0

0 commit comments

Comments
 (0)