git: 316aa4de2c4f - main - mfc-candidates: Retire shell wrapper

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Wed, 15 Jan 2025 02:54:39 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=316aa4de2c4f8e3ecba987ce038af0c484821be3

commit 316aa4de2c4f8e3ecba987ce038af0c484821be3
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-01-15 02:53:50 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-01-15 02:54:12 +0000

    mfc-candidates: Retire shell wrapper
    
    In commit 48f3fcabea80 I replaced the shell implementation of
    mfc-candidates with one in Lua, but left the .sh as a wrapper in case
    users had an alias or script that called it.  Enough time has now passed
    that we can remove the wrapper.
    
    Sponsored by:   The FreeBSD Foundation
---
 tools/tools/git/mfc-candidates.sh | 33 ---------------------------------
 1 file changed, 33 deletions(-)

diff --git a/tools/tools/git/mfc-candidates.sh b/tools/tools/git/mfc-candidates.sh
deleted file mode 100644
index 53fad909c91f..000000000000
--- a/tools/tools/git/mfc-candidates.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-#-
-# SPDX-License-Identifier: BSD-2-Clause
-#
-# Copyright 2022 The FreeBSD Foundation
-#
-# This software was developed by Ed Maste
-# under sponsorship from the FreeBSD Foundation.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted providing that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-# SUCH DAMAGE.
-
-# Backwards compatibility wrapper
-/usr/libexec/flua $(dirname $0)/mfc-candidates.lua "$@"