From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.0.0.0/16 X-Spam-Status: No, score=-3.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_HI,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 2583F1FADF for ; Thu, 11 Jan 2018 17:56:00 +0000 (UTC) Received: from localhost ([::1]:59130 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZh54-0004sm-BP for e@80x24.org; Thu, 11 Jan 2018 12:55:58 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZh51-0004qg-1e for dtas-all@nongnu.org; Thu, 11 Jan 2018 12:55:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eZh50-0003Ph-7H for dtas-all@nongnu.org; Thu, 11 Jan 2018 12:55:55 -0500 Received: from dcvr.yhbt.net ([2600:3c01::f03c:91ff:fe96:f5d6]:39500) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eZh50-0003PH-0d for dtas-all@nongnu.org; Thu, 11 Jan 2018 12:55:54 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 5EC361FADF; Thu, 11 Jan 2018 17:55:52 +0000 (UTC) From: Eric Wong To: dtas-all@nongnu.org Subject: [PATCH] Rakefile: update path for uploads Date: Thu, 11 Jan 2018 17:55:52 +0000 Message-Id: <20180111175552.30500-1-e@80x24.org> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2600:3c01::f03c:91ff:fe96:f5d6 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: duct tape audio suite List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Eric Wong Errors-To: dtas-all-bounces+e=80x24.org@nongnu.org Sender: "dtas-all" From: Eric Wong I forgot to update this path when our website changed from http://dtas.80x24.org/ to https://80x24.org/dtas/ to reduce TLS renewal and negotiation overhead. Thanks to Rene Maurer for noticing. cf. https://80x24.org/dtas-all/20180111114546.77906b35@cumparsita.ch/ --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3194599..9339270 100644 --- a/Rakefile +++ b/Rakefile @@ -93,7 +93,7 @@ def tags end task rsync_docs: %w(NEWS NEWS.atom) do - dest = ENV["RSYNC_DEST"] || "80x24.org:/srv/dtas/" + dest = ENV["RSYNC_DEST"] || "80x24.org:/srv/80x24/dtas/" top = %w(INSTALL NEWS README COPYING NEWS.atom) files = [] -- EW