Skip to content

Commit

Permalink
New release 316
Browse files Browse the repository at this point in the history
  • Loading branch information
Klink committed Mar 30, 2012
1 parent 7a81c38 commit fcc0c21
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LATESTIS
@@ -1 +1 @@
315 316
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
stalag13-utils (2.316-20120330) unstable; urgency=low

* Upstream release

-- Mathieu Roy <klink@bender.stalag13.ici> Fri, 30 Mar 2012 15:23:47 +0200

stalag13-utils (2.315-20120330) unstable; urgency=low stalag13-utils (2.315-20120330) unstable; urgency=low


* Upstream release * Upstream release
Expand Down
Expand Up @@ -81,7 +81,7 @@
# find out suffix, ignore file if none found # find out suffix, ignore file if none found
my $suffix = 0; my $suffix = 0;
my $realfile; my $realfile;
if ($file =~ /^(.*)(\.[^.]*)$/) { $suffix = $2; $realfile = $1; } if ($file =~ /^(.*)(\.[^.]*)$/) { $suffix = lc($2); $realfile = $1; }
next unless $suffix && $realfile; next unless $suffix && $realfile;
next unless ($suffix eq ".ogg" or $suffix eq ".mp3" or $suffix eq ".flac"); next unless ($suffix eq ".ogg" or $suffix eq ".mp3" or $suffix eq ".flac");


Expand Down
Expand Up @@ -93,7 +93,7 @@
# find out suffix, ignore file if none found # find out suffix, ignore file if none found
my $suffix = 0; my $suffix = 0;
my $realfile; my $realfile;
if ($file =~ /^(.*)(\.[^.]*)$/) { $suffix = $2; $realfile = $1; } if ($file =~ /^(.*)(\.[^.]*)$/) { $suffix = lc($2); $realfile = $1; }
next unless $suffix && $realfile; next unless $suffix && $realfile;


# if image, simply move it # if image, simply move it
Expand Down

0 comments on commit fcc0c21

Please sign in to comment.