Skip to content

Commit

Permalink
Remove trailing slash from PATH entries
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Sep 22, 2022
1 parent 4654630 commit f9edbb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/downloads-rakudo-source.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ make install
make test
make spectest

echo "export PATH=$(pwd)/install/bin/:$(pwd)/install/share/perl6/site/bin:\$PATH" \\
echo "export PATH=$(pwd)/install/bin:$(pwd)/install/share/perl6/site/bin:\$PATH" \\
>> ~/.bashrc
source ~/.bashrc</code></pre>
<p>You'll likely want to also install
Expand Down
4 changes: 2 additions & 2 deletions templates/star-source.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ rm -fr rakudo-star-*

./bin/rstar install

echo "export PATH=$(pwd)/bin/:$(pwd)/share/perl6/site/bin:$(pwd)/share/perl6/vendor/bin:$(pwd)/share/perl6/core/bin:\$PATH" >> ~/.bashrc
echo "export PATH=$(pwd)/bin:$(pwd)/share/perl6/site/bin:$(pwd)/share/perl6/vendor/bin:$(pwd)/share/perl6/core/bin:\$PATH" >> ~/.bashrc
source ~/.bashrc

# If you wish, you can run the tests
Expand Down Expand Up @@ -156,7 +156,7 @@ make rakudo-spectest
# Install Rakudo and all the modules
make install

echo "export PATH=$(pwd)/install/bin/:$(pwd)/install/share/perl6/site/bin:\$PATH" \\
echo "export PATH=$(pwd)/install/bin:$(pwd)/install/share/perl6/site/bin:\$PATH" \\
>> ~/.bashrc
source ~/.bashrc</code></pre>
</div>
Expand Down

0 comments on commit f9edbb8

Please sign in to comment.