update links to dlang

This commit is contained in:
Sebastian Wilzbach 2016-04-16 06:51:38 +03:00
parent 60b0185c07
commit 213343d2fd
4 changed files with 5 additions and 5 deletions

2
dget.d
View file

@ -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)
{

View file

@ -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

2
rdmd.d
View file

@ -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)))
{

View file

@ -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 && \