Browse Source

$config_url should be composed from $rawRepo, not $basedir

`$config_url` needs to be composed of `$rawRepo + "/config"` and not `$basdir + "/config"`.

This yields the correct URL [https://raw.github.com/TechEmpower/FrameworkBenchmarks/master/config] instead of [C:\FrameworkBenchmarks/config].
Kevin Pullin 12 years ago
parent
commit
011d77b17a
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"