Skip to content

Commit

Permalink
Rename '.work' to '.panda-work'
Browse files Browse the repository at this point in the history
  • Loading branch information
softmoth committed May 9, 2014
1 parent da6558d commit 035ffc6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/panda
Expand Up @@ -44,7 +44,7 @@ multi MAIN ('search', $pattern) {
}

END {
rm_rf '.work' if '.work'.IO.e;
rm_rf '.panda-work' if '.panda-work'.IO.e;
}

# vim: ft=perl6
2 changes: 1 addition & 1 deletion bin/redpanda
Expand Up @@ -27,7 +27,7 @@ sub get-meta($module is copy) {
}

sub MAIN($url) {
my $dir = '.work'.path.absolute;
my $dir = '.panda-work'.path.absolute;
rm_rf $dir;
try {
Panda::Fetcher::fetch($url, $dir);
Expand Down
2 changes: 1 addition & 1 deletion lib/Panda.pm
Expand Up @@ -9,7 +9,7 @@ use JSON::Tiny;

sub tmpdir {
state $i = 0;
".work/{time}_{$i++}".path.absolute
".panda-work/{time}_{$i++}".path.absolute
}

class Panda {
Expand Down

0 comments on commit 035ffc6

Please sign in to comment.