aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-01-28 15:37:37 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-01-28 15:41:28 +0100
commit8f5849052f6ba7f9115f7f68a1fd0e7eaa1fe7b8 (patch)
tree21526252f6d204d3526daf52cd085f8ae2d0c4fd
parente05c0291f51b420c63234e49ff41a0245160446e (diff)
Update Makefile to use GitHub as source for Rakudo and NQP
-rw-r--r--tools/star/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/star/Makefile b/tools/star/Makefile
index 33679a8..b2d4673 100644
--- a/tools/star/Makefile
+++ b/tools/star/Makefile
@@ -15,9 +15,10 @@ RELEASE_DIR = $(shell pwd)/work/release
RAKUDO_TGZ = rakudo-$(RAKUDO_VER).tar.gz
RAKUDO_URL = https://rakudo.perl6.org/downloads/rakudo/$(RAKUDO_TGZ)
+RAKUDO_URL = https://github.com/rakudo/rakudo/releases/download/$(RAKUDO_VER)/$(RAKUDO_TGZ)
RAKUDO_SRC = $(SRC_DIR)/$(RAKUDO_TGZ)
NQP_TGZ = nqp-$(NQP_VER).tar.gz
-NQP_URL = https://rakudo.perl6.org/downloads/nqp/$(NQP_TGZ)
+NQP_URL = https://github.com/perl6/nqp/releases/download/$(NQP_VER)/$(NQP_TGZ)
NQP_SRC = $(SRC_DIR)/$(NQP_TGZ)
MOAR_TGZ = MoarVM-$(MOAR_VER).tar.gz
MOAR_URL = https://www.moarvm.org/releases/$(MOAR_TGZ)