Skip to content

Commit 433a17e

Browse files
committed
fixed repo url
1 parent a1a3888 commit 433a17e

File tree

15 files changed

+28
-28
lines changed

15 files changed

+28
-28
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ choco install dotnet.script
5959
We also provide a PowerShell script for installation.
6060

6161
```powershell
62-
(new-object Net.WebClient).DownloadString("https://raw.githubusercontent.com/filipw/dotnet-script/master/install/install.ps1") | iex
62+
(new-object Net.WebClient).DownloadString("https://raw.githubusercontent.com/dotnet-script/dotnet-script/master/install/install.ps1") | iex
6363
```
6464

6565
### Linux and Mac
6666

6767
```shell
68-
curl -s https://raw.githubusercontent.com/filipw/dotnet-script/master/install/install.sh | bash
68+
curl -s https://raw.githubusercontent.com/dotnet-script/dotnet-script/master/install/install.sh | bash
6969
```
7070

7171
If permission is denied we can try with `sudo`
7272

7373
```shell
74-
curl -s https://raw.githubusercontent.com/filipw/dotnet-script/master/install/install.sh | sudo bash
74+
curl -s https://raw.githubusercontent.com/dotnet-script/dotnet-script/master/install/install.sh | sudo bash
7575
```
7676

7777
### Docker
@@ -91,7 +91,7 @@ docker run -it dotnet-script --version
9191

9292
### Github
9393

94-
You can manually download all the releases in `zip` format from the [GitHub releases page](https://github.com/filipw/dotnet-script/releases).
94+
You can manually download all the releases in `zip` format from the [GitHub releases page](https://github.com/dotnet-script/dotnet-script/releases).
9595

9696
## Usage
9797

@@ -576,4 +576,4 @@ We will also see this when working with scripts in VS Code under the problems pa
576576

577577
## License
578578

579-
[MIT License](https://github.com/filipw/dotnet-script/blob/master/LICENSE)
579+
[MIT License](https://github.com/dotnet-script/dotnet-script/blob/master/LICENSE)

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44
DOTNET_SCRIPT="$SCRIPT_DIR/build/dotnet-script"
55
if [ ! -d "$DOTNET_SCRIPT" ]; then
6-
currentVersion=$(curl https://api.github.com/repos/filipw/dotnet-script/releases/latest?access_token=3a5de576bd32ddfccb52662d2d08d33a7edc318b | grep -Eo "\"tag_name\":\s*\"(.*)\"" | cut -d'"' -f4)
6+
currentVersion=$(curl https://api.github.com/repos/dotnet-script/dotnet-script/releases/latest?access_token=3a5de576bd32ddfccb52662d2d08d33a7edc318b | grep -Eo "\"tag_name\":\s*\"(.*)\"" | cut -d'"' -f4)
77
echo "Downloading dotnet-script version $currentVersion..."
8-
curl -L https://github.com/filipw/dotnet-script/releases/download/$currentVersion/dotnet-script.$currentVersion.zip > "$SCRIPT_DIR/build/dotnet-script.zip"
8+
curl -L https://github.com/dotnet-script/dotnet-script/releases/download/$currentVersion/dotnet-script.$currentVersion.zip > "$SCRIPT_DIR/build/dotnet-script.zip"
99
unzip -o "$SCRIPT_DIR/build/dotnet-script.zip" -d "$SCRIPT_DIR/build/"
1010
if [ $? -ne 0 ]; then
1111
echo "An error occured while downloading dotnet-script"

build/Chocolatey/tools/VERIFICATION.TXT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ in verifying that this package's contents are trustworthy.
55
dotnet-script.dll : 3BF42E83BE931AC98D02306DBC6FB319
66

77
Check against the corresponding file in this release.
8-
https://github.com/filipw/dotnet-script/releases/download/0.13.0/dotnet-script.0.13.0.zip
8+
https://github.com/dotnet-script/dotnet-script/releases/download/0.13.0/dotnet-script.0.13.0.zip

build/install-dotnet-script.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$scriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
44
$client = New-Object "System.Net.WebClient"
5-
$url = "https://github.com/filipw/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip"
5+
$url = "https://github.com/dotnet-script/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip"
66
$file = "$scriptRoot/dotnet-script.zip"
77
$client.DownloadFile($url,$file)
88
Expand-Archive $file -DestinationPath $scriptRoot -Force

build/install-dotnet-script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

3-
curl -L https://github.com/filipw/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip > dotnet-script.zip
3+
curl -L https://github.com/dotnet-script/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip > dotnet-script.zip
44
unzip -o dotnet-script.zip -d ./

install/install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ $tempFolder = Join-Path $env:TEMP "dotnet-script"
55
New-Item $tempFolder -ItemType Directory -Force
66

77
# Get the latest release
8-
$latestRelease = Invoke-WebRequest "https://api.github.com/repos/filipw/dotnet-script/releases/latest" |
8+
$latestRelease = Invoke-WebRequest "https://api.github.com/repos/dotnet-script/dotnet-script/releases/latest" |
99
ConvertFrom-Json |
1010
Select-Object tag_name
1111
$tag_name = $latestRelease.tag_name
1212

1313
# Download the zip
1414
Write-Host "Downloading latest version ($tag_name)"
1515
$client = New-Object "System.Net.WebClient"
16-
$url = "https://github.com/filipw/dotnet-script/releases/download/$tag_name/dotnet-script.$tag_name.zip"
16+
$url = "https://github.com/dotnet-script/dotnet-script/releases/download/$tag_name/dotnet-script.$tag_name.zip"
1717
$zipFile = Join-Path $tempFolder "dotnet-script.zip"
1818
$client.DownloadFile($url,$zipFile)
1919

install/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
mkdir /tmp/dotnet-script
33
if [[ -z $1 ]]; then
4-
version=$(curl https://api.github.com/repos/filipw/dotnet-script/releases/latest | grep -Eo "\"tag_name\":\s*\"(.*)\"" | cut -d'"' -f4)
4+
version=$(curl https://api.github.com/repos/dotnet-script/dotnet-script/releases/latest | grep -Eo "\"tag_name\":\s*\"(.*)\"" | cut -d'"' -f4)
55
else
66
version=$1
77
fi
@@ -15,7 +15,7 @@ if [[ $? -eq 0 ]]; then
1515
fi
1616

1717
echo "Installing $version..."
18-
curl -L https://github.com/filipw/dotnet-script/releases/download/$version/dotnet-script.$version.zip > /tmp/dotnet-script/dotnet-script.zip
18+
curl -L https://github.com/dotnet-script/dotnet-script/releases/download/$version/dotnet-script.$version.zip > /tmp/dotnet-script/dotnet-script.zip
1919
unzip -o /tmp/dotnet-script/dotnet-script.zip -d /usr/local/lib
2020
chmod +x /usr/local/lib/dotnet-script/dotnet-script.sh
2121
cd /usr/local/bin

src/Dotnet.Script.Core/Dotnet.Script.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<PackageId>Dotnet.Script.Core</PackageId>
1010
<PackageTags>script;csx;csharp;roslyn</PackageTags>
1111
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
12-
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
12+
<PackageProjectUrl>https://github.com/dotnet-script/dotnet-script</PackageProjectUrl>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<RepositoryType>git</RepositoryType>
15-
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
15+
<RepositoryUrl>https://github.com/dotnet-script/dotnet-script.git</RepositoryUrl>
1616
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
1717
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1818
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>

src/Dotnet.Script.Core/Versioning/EnvironmentReporter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ private void ReportThatNewVersionIsAvailable(VersionInfo latestVersion)
7878
if (ScriptEnvironment.Default.IsWindows)
7979
{
8080
updateInfo.AppendLine("Chocolatey : choco upgrade Dotnet.Script");
81-
updateInfo.AppendLine("Powershell : (new-object Net.WebClient).DownloadString(\"https://raw.githubusercontent.com/filipw/dotnet-script/master/install/install.ps\") | iex");
81+
updateInfo.AppendLine("Powershell : (new-object Net.WebClient).DownloadString(\"https://raw.githubusercontent.com/dotnet-script/dotnet-script/master/install/install.ps\") | iex");
8282
}
8383
else
8484
{
85-
updateInfo.AppendLine("Bash : curl -s https://raw.githubusercontent.com/filipw/dotnet-script/master/install/install.sh | bash");
85+
updateInfo.AppendLine("Bash : curl -s https://raw.githubusercontent.com/dotnet-script/dotnet-script/master/install/install.sh | bash");
8686
}
8787

8888
_scriptConsole.WriteHighlighted(updateInfo.ToString());

src/Dotnet.Script.Core/Versioning/VersionProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Dotnet.Script.Core.Versioning
1414
public class VersionProvider : IVersionProvider
1515
{
1616
private const string UserAgent = "dotnet-script";
17-
private static readonly string RequestUri = "/repos/filipw/dotnet-script/releases/latest";
17+
private static readonly string RequestUri = "/repos/dotnet-script/dotnet-script/releases/latest";
1818

1919
/// <inheritdoc>
2020
public async Task<VersionInfo> GetLatestVersion()

src/Dotnet.Script.DependencyModel.Nuget/Dotnet.Script.DependencyModel.NuGet.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0</TargetFrameworks>
55
<PackageLicenseExpression>MIT</PackageLicenseExpression>
6-
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
6+
<PackageProjectUrl>https://github.com/dotnet-script/dotnet-script</PackageProjectUrl>
77
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
8-
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
8+
<RepositoryUrl>https://github.com/dotnet-script/dotnet-script.git</RepositoryUrl>
99
<RepositoryType>git</RepositoryType>
1010
<PackageTags>script;csx;csharp;roslyn;nuget</PackageTags>
1111
<Version>1.4.0</Version>

src/Dotnet.Script.DependencyModel/Dotnet.Script.DependencyModel.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<Company>dotnet-script</Company>
77
<Description>Provides runtime and compilation dependency resolution for dotnet-script based scripts.</Description>
88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
9-
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
9+
<PackageProjectUrl>https://github.com/dotnet-script/dotnet-script</PackageProjectUrl>
1010
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
11-
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
11+
<RepositoryUrl>https://github.com/dotnet-script/dotnet-script.git</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>script;csx;csharp;roslyn;omnisharp</PackageTags>
1414
<Version>1.4.0</Version>

src/Dotnet.Script.Tests/PackageVersionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class PackageVersionTests
1313
[InlineData("1.2.3")]
1414
[InlineData("1.2.3.4")]
1515
[InlineData("1.2.3-beta1")]
16-
[InlineData("0.1.4-beta")] // See: https://github.com/filipw/dotnet-script/issues/407#issuecomment-563363947
17-
[InlineData("2.0.0-preview3.20122.2")] // See: https://github.com/filipw/dotnet-script/issues/407#issuecomment-631122591
16+
[InlineData("0.1.4-beta")] // See: https://github.com/dotnet-script/dotnet-script/issues/407#issuecomment-563363947
17+
[InlineData("2.0.0-preview3.20122.2")] // See: https://github.com/dotnet-script/dotnet-script/issues/407#issuecomment-631122591
1818
[InlineData("1.0.0-ci-20180920T1656")]
1919
[InlineData("[1.2]")]
2020
[InlineData("[1.2.3]")]

src/Dotnet.Script.Tests/ScriptExecutionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public void ShouldLoadMicrosoftExtensionsDependencyInjection()
281281
[Fact]
282282
public void ShouldThrowExceptionOnInvalidMediaType()
283283
{
284-
var url = "https://github.com/filipw/dotnet-script/archive/0.20.0.zip";
284+
var url = "https://github.com/dotnet-script/dotnet-script/archive/0.20.0.zip";
285285
var (output, _) = ScriptTestRunner.Default.Execute(url);
286286
Assert.Contains("not supported", output);
287287
}

src/Dotnet.Script/Dotnet.Script.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<OutputType>Exe</OutputType>
1111
<PackageTags>dotnet;cli;script;csx;csharp;roslyn</PackageTags>
1212
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
13-
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
13+
<PackageProjectUrl>https://github.com/dotnet-script/dotnet-script</PackageProjectUrl>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<RepositoryType>git</RepositoryType>
16-
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
16+
<RepositoryUrl>https://github.com/dotnet-script/dotnet-script.git</RepositoryUrl>
1717
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
1818
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1919
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>

0 commit comments

Comments
 (0)