[Slim-Checkins] r10234 - /trunk/server/Slim/Utils/Firmware.pm
andy at svn.slimdevices.com
andy at svn.slimdevices.com
Fri Oct 6 07:47:19 PDT 2006
Author: andy
Date: Fri Oct 6 07:47:18 2006
New Revision: 10234
URL: http://svn.slimdevices.com?rev=10234&view=rev
Log:
Use version directories for firmware
Modified:
trunk/server/Slim/Utils/Firmware.pm
Modified: trunk/server/Slim/Utils/Firmware.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Utils/Firmware.pm?rev=10234&r1=10233&r2=10234&view=diff
==============================================================================
--- trunk/server/Slim/Utils/Firmware.pm (original)
+++ trunk/server/Slim/Utils/Firmware.pm Fri Oct 6 07:47:18 2006
@@ -93,7 +93,7 @@
my $ok = 1;
for my $file ( keys %{$files} ) {
- my $url = $base . '/' . $file;
+ my $url = $base . '/' . $::VERSION . '/' . $file;
$ok = download( $url, $file );
@@ -181,7 +181,7 @@
my $file = shift;
# URL to download
- my $url = $base . '/' . $file;
+ my $url = $base . '/' . $::VERSION . '/' . $file;
# File to save it in, we use a tmp file so we can check SHA
my $path = catdir( $dir, $file ) . '.tmp';
More information about the checkins
mailing list