Skip to content

Commit 7cc0e68

Browse files
committed
Clarify header
1 parent 9737935 commit 7cc0e68

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

VBScript/Build.vbs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,16 @@ Dim arrFilesToIgnore
3737
arrSubfolderNames = Array("01_Overall_Script_Header", "02_Upfront_Encapsulated_Code_With_No_Dependencies", "03_Main_Section_Code_Executed_Every_Time", "99_Script_Footer")
3838
strOutputFileName = "Accelerator.vbs"
3939

40-
' Set the following equal to an array of files to be excluded from the build process.
40+
' Set the following equal to an array of strings containing partial file paths to be
41+
' excluded from the build process.
42+
'
4143
' By default, this is set to exclude the Version.vbs file from the build process
42-
' because classes are not compatible with early versions of VBScript, and,
43-
' specifically, the use of the New keyword in the Version class results in syntax
44-
' errors if you try to run the code on early versions of VBScript.
44+
' because Version.vbs defines a custom class, and classes are not compatible with early
45+
' versions of VBScript. Specifically, the use of the New keyword in the Version class
46+
' results in syntax errors if you try to run the code on early versions of VBScript.
47+
'
48+
' The format of the strings in this array should be:
49+
' Foldername\FileName.vbs
4550
arrFilesToIgnore = Array("02_Upfront_Encapsulated_Code_With_No_Dependencies\Version.vbs")
4651

4752
Function TestObjectForData(ByVal objToCheck)

0 commit comments

Comments
 (0)