From 4bfc989bebf3618bc1c66987c66ab51e952b9b88 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Hendrik=20J=C3=A4ger?= Date: Fri, 25 Aug 2023 13:29:46 +0200 Subject: [PATCH] fix: path to execlineb in shebang --- finish | 2 +- log/run | 2 +- run | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/finish b/finish index cd402a9..307ee05 100644 --- a/finish +++ b/finish @@ -1,4 +1,4 @@ -#!/usr/bin/execlineb -S3 +#!/bin/execlineb -S3 # the -S3 tells execline to substitute 3 positional parameters # which for this file are: # 1) exit code of the 'run' script diff --git a/log/run b/log/run index 5a3526d..fe1382d 100644 --- a/log/run +++ b/log/run @@ -1,4 +1,4 @@ -#!/usr/bin/execlineb -S1 +#!/bin/execlineb -S1 # the -S1 tells execline to substitute 1 positional parameter # which for this file is: the name of the service directory diff --git a/run b/run index 7ee0836..2d1e4f4 100644 --- a/run +++ b/run @@ -1,4 +1,4 @@ -#!/usr/bin/execlineb -S1 +#!/bin/execlineb -S1 # the -S1 tells execline to substitute 1 positional parameter # which for this file is: the name of the service directory -- 2.39.2