@@ -38,11 +38,27 @@ Folder = ".\src\"
3838' Overwrite modules and folder if 2nd argument is given'
3939If Args.Length > 1 Then
4040 If Args( 1 ) = "specs" Then
41- Modules = Array( "RestClientAsyncSpecs.bas" , "RestClientBaseSpecs.bas" , "RestClientSpecs.bas" , "RestHelpersSpecs.bas" , "RestRequestSpecs.bas" )
41+ Modules = Array( _
42+ "RestClientAsyncSpecs.bas" , _
43+ "RestClientBaseSpecs.bas" , _
44+ "RestClientSpecs.bas" , _
45+ "RestHelpersSpecs.bas" , _
46+ "RestRequestSpecs.bas" , _
47+ "DigestAuthenticatorSpecs.bas" _
48+ )
4249 Folder = ".\specs\"
4350 End If
4451 If Args( 1 ) = "auth" Then
45- Modules = Array( "EmptyAuthenticator.cls" , "FacebookAuthenticator.cls" , "GoogleAuthenticator.cls" , "HttpBasicAuthenticator.cls" , "OAuth1Authenticator.cls" , "OAuth2Authenticator.cls" , "TwitterAuthenticator.cls" , "DigestAuthenticator.cls" )
52+ Modules = Array( _
53+ "EmptyAuthenticator.cls" , _
54+ "HttpBasicAuthenticator.cls" , _
55+ "OAuth1Authenticator.cls" , _
56+ "OAuth2Authenticator.cls" , _
57+ "GoogleAuthenticator.cls" , _
58+ "TwitterAuthenticator.cls" , _
59+ "FacebookAuthenticator.cls" , _
60+ "DigestAuthenticator.cls" _
61+ )
4662 Folder = ".\authenticators\"
4763 End If
4864End If
0 commit comments