Browse Source

Merge pull request #420 from kppullin/patch-6

Same as #419. I've not tested, but merging anyway.

$config_url should be composed from $rawRepo, not $basedir
Brian Hauer 12 years ago
parent
commit
001bdb7fc2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      setup-sqlserver-bootstrap.ps1

+ 1 - 1
setup-sqlserver-bootstrap.ps1

@@ -5,7 +5,7 @@
 $basedir = "C:\FrameworkBenchmarks"
 $rawRepo = "https://raw.github.com/TechEmpower/FrameworkBenchmarks/master"
 
-$config_url = $basedir + "/config"
+$config_url = $rawRepo + "/config"
 $config_local = $basedir + "\config"
 $setup_sqlserver_url = $rawRepo + "/setup-sqlserver.ps1"
 $setup_sqlserver_local = $basedir + "\setup-sqlserver.ps1"