Skip to content

Commit ea2787c

Browse files
committed
forward slash directories for ci builds
1 parent 40466a7 commit ea2787c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ListingBuilder/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class Program
1212
{
1313
static void Main(string[] args)
1414
{
15-
string readPath = @"..\..\..\jQueryCodeSnippets";
16-
string listingFilePath = @"..\..\..\SnippetListing.html";
15+
string readPath = @"../../../jQueryCodeSnippets";
16+
string listingFilePath = @"../../../SnippetListing.html";
1717
StringBuilder tableSb = new StringBuilder();
1818

1919
tableSb.AppendLine("<table>");

Tests/SnippetTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Tests
99
public class SnippetTests
1010
{
1111
// --- CONFIGURATION ---
12-
private string m_path = @"..\..\..\jQueryCodeSnippets";
12+
private string m_path = @"../../../jQueryCodeSnippets";
1313
private string m_helpUrl = "https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets";
1414
private string m_version = "1.5.0";
1515
// --- END CONFIGURATION ---

0 commit comments

Comments
 (0)