Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix installing into the default location
  • Loading branch information
Tadeusz Sośnierz committed Jul 18, 2012
1 parent ee1aa2b commit 2167d8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/panda 100644 → 100755
Expand Up @@ -69,7 +69,8 @@ my $panda;

$panda = Panda.new(
srcdir => "$pandadir/src",
destdir => "{cwd}/%*ENV<DESTDIR>" // "$home/.perl6",
destdir => %*ENV<DESTDIR> ?? "{cwd}/%*ENV<DESTDIR>"
!! "$home/.perl6",
statefile => "$pandadir/state",
projectsfile => "$pandadir/projects.json"
);
Expand Down

0 comments on commit 2167d8b

Please sign in to comment.