/sh.sh Secret
Created
May 13, 2018 12:49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/rakudo/rakudo/ ~/rakudo | |
echo 'export PATH="$HOME/rakudo/install/bin:$HOME/rakudo/install/share/perl6/site/bin:$PATH"' >> ~/.bashrc | |
echo 'alias update-perl6='\'' | |
cd ~/rakudo && git checkout master && git pull && | |
git checkout $(git describe --abbrev=0 --tags) && | |
perl Configure.pl --gen-moar --gen-nqp --backends=moar && | |
make && make install'\''' >> ~/.bashrc | |
source ~/.bashrc | |
update-perl6 | |
cd $(mktemp -d) | |
git clone https://github.com/ugexe/zef | |
cd zef | |
perl6 -I. bin/zef install . | |
perl6 -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment