diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-05-20 16:12:02 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-05-20 16:12:02 +0200 |
commit | b970e5c22fb9e6d764cccadc200894aeda40ea14 (patch) | |
tree | a7e9b3e3e95b6ce7a278498f49faa54913b7ae03 /lib/App/Raps2.pm | |
parent | 5b375768101d93054d42f9326f010d6f8019f541 (diff) |
App/Raps2: make_path takes multiple arguments
Diffstat (limited to 'lib/App/Raps2.pm')
-rw-r--r-- | lib/App/Raps2.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/App/Raps2.pm b/lib/App/Raps2.pm index 4a204aa..531e629 100644 --- a/lib/App/Raps2.pm +++ b/lib/App/Raps2.pm @@ -46,8 +46,7 @@ sub file_to_hash { sub sanity_check { my ($self) = @_; - make_path( $self->{xdg_conf} ); - make_path( $self->{xdg_data} ); + make_path( $self->{xdg_conf}, $self->{xdg_data} ); if ( not -e $self->{xdg_conf} . '/password' ) { $self->create_config(); |