From 97f31072ce22e381b4fff3f8da74de1a2f5aebbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Stefanik?= Date: Sat, 23 Dec 2023 07:30:11 +0100 Subject: [PATCH] Add license information to break.sh Not that it's exactly copyrightable, being just "exit 0", but linter complains about it. --- steps/jump/break.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/steps/jump/break.sh b/steps/jump/break.sh index ca916d0..e6788ce 100644 --- a/steps/jump/break.sh +++ b/steps/jump/break.sh @@ -1 +1,7 @@ +#!/bin/bash +# +# SPDX-FileCopyrightText: 2023 Gábor Stefanik +# +# SPDX-License-Identifier: GPL-3.0-or-later + exit 0