Skip to content

Commit

Permalink
update links to dlang
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach committed Apr 16, 2016
1 parent 60b0185 commit 213343d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dget.d
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion latest-tag
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

set -o errexit
cd $(dirname $0)/../dmd
git fetch --tags [email protected]:D-Programming-Language/dmd
git fetch --tags [email protected]:dlang/dmd
git tag | grep '^v[0-9]\.[0-9]*$' | sed 's/^v//' | sort -nr | head -n 1
2 changes: 1 addition & 1 deletion rdmd.d
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
{
Expand Down
4 changes: 2 additions & 2 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 && \
Expand Down

0 comments on commit 213343d

Please sign in to comment.