When building the package path for the new fw_update, only use
authorsthen <sthen@openbsd.org>
Mon, 5 Jan 2015 13:18:31 +0000 (13:18 +0000)
committersthen <sthen@openbsd.org>
Mon, 5 Jan 2015 13:18:31 +0000 (13:18 +0000)
/firmware/snapshots/ for releases tagged with "-current", otherwise
use the version number e.g. /firmware/5.7/ for 5.7-beta / 5.7.

usr.sbin/pkg_add/OpenBSD/FwUpdate.pm

index 9ee7fa4..c7a405b 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/perl
 
 # ex:ts=8 sw=4:
-# $OpenBSD: FwUpdate.pm,v 1.6 2015/01/04 14:55:47 espie Exp $
+# $OpenBSD: FwUpdate.pm,v 1.7 2015/01/05 13:18:31 sthen Exp $
 #
 # Copyright (c) 2014 Marc Espie <espie@openbsd.org>
 #
@@ -33,7 +33,7 @@ sub find_path
        close($cmd);
        if ($line =~ m/^OpenBSD (\d\.\d)(\S*)\s/) {
                my ($version, $tag) = ($1, $2);
-               if ($tag ne '-stable') {
+               if ($tag eq '-current') {
                        $version = 'snapshots';
                }
                $state->{path} = "http://firmware.openbsd.org/firmware/$version/";