From 213343d2fd221a4188dcd95079ec716a5899c1a2 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Sat, 16 Apr 2016 06:51:38 +0300 Subject: [PATCH] update links to dlang --- dget.d | 2 +- latest-tag | 2 +- rdmd.d | 2 +- update.sh | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dget.d b/dget.d index 665117532b..591b3efce0 100644 --- a/dget.d +++ b/dget.d @@ -40,7 +40,7 @@ int main(string[] args) //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /// default github users for repo lookup -immutable defaultUsers = ["D-Programming-Deimos", "D-Programming-Language"]; +immutable defaultUsers = ["D-Programming-Deimos", "dlang"]; auto resolveRepo(string arg) { diff --git a/latest-tag b/latest-tag index e6c383dbfc..553b7ad2b8 100755 --- a/latest-tag +++ b/latest-tag @@ -6,5 +6,5 @@ set -o errexit cd $(dirname $0)/../dmd -git fetch --tags git@github.com:D-Programming-Language/dmd +git fetch --tags git@github.com:dlang/dmd git tag | grep '^v[0-9]\.[0-9]*$' | sed 's/^v//' | sort -nr | head -n 1 diff --git a/rdmd.d b/rdmd.d index ab28e95f3a..2b74458fac 100644 --- a/rdmd.d +++ b/rdmd.d @@ -147,7 +147,7 @@ int main(string[] args) * std.path.buildNormalizedPath(), but some corner cases will break, so it * has been decided to only allow -of for now. * To see the full discussion please refer to: - * https://github.com/D-Programming-Language/tools/pull/122 + * https://github.com/dlang/tools/pull/122 */ if ((makeDepend || makeDepFile.ptr) && (!exe.ptr || exe.endsWith(dirSeparator))) { diff --git a/update.sh b/update.sh index 51fb70cde2..fea85c0c8c 100755 --- a/update.sh +++ b/update.sh @@ -112,7 +112,7 @@ function installAnew() { for project in $projects; do ( cd $wd && - git clone --quiet git://github.com/D-Programming-Language/$project.git && + git clone --quiet git://github.com/dlang/$project.git && touch $tempdir/$project ) & done @@ -141,7 +141,7 @@ function update() { function update_project() { local project=$1 - local gitproject="git://github.com/D-Programming-Language/$project.git" + local gitproject="git://github.com/dlang/$project.git" if ! ( cd "$wd/$project" && \ git checkout master && \ git pull --ff-only $gitproject master && \