From 81db5c3bf139f20ceb80abc36abfa19bb750c456 Mon Sep 17 00:00:00 2001 From: Sayafdine Said Date: Sun, 25 Jun 2023 14:18:12 +0200 Subject: [PATCH] fix: use correct shebang --- howdy/src/bin/howdy.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/howdy/src/bin/howdy.in b/howdy/src/bin/howdy.in index e9f4953..1ea89f7 100644 --- a/howdy/src/bin/howdy.in +++ b/howdy/src/bin/howdy.in @@ -1,3 +1,3 @@ -#!/usr/bin/env sh +#!/bin/sh -/usr/bin/env python3 "@script_path@" "$@" \ No newline at end of file +env python3 "@script_path@" "$@" \ No newline at end of file