From 66659572d179c17c8e5b312c5dfab673844dc09b Mon Sep 17 00:00:00 2001 From: Mason James Date: Wed, 6 Jul 2022 19:50:07 +1200 Subject: [PATCH] Bug 31108: add missing shebang line to ./t/00-check-atomic-updates.pl Content-Type: text/plain; charset="utf-8" small patch to add missing shebang line to ./t/00-check-atomic-updates.pl to test... 1/ run prove, test is not run :( prove ./t | grep 00-check-atomic-updates.pl | wc -l 0 2/ apply patch 3/ run prove, test is run :) prove ./t | grep 00-check-atomic-updates.pl | wc -l 2 --- t/00-check-atomic-updates.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/00-check-atomic-updates.pl b/t/00-check-atomic-updates.pl index d9ad730815..157b62008e 100755 --- a/t/00-check-atomic-updates.pl +++ b/t/00-check-atomic-updates.pl @@ -1,3 +1,5 @@ +#!/usr/bin/env perl + # Copyright 2022 Mason James # # This file is part of Koha. -- 2.20.1