Use /usr/bin/env in the shebang line of shell scripts to ensure portability

This commit is contained in:
sergystepanov 2025-05-28 08:19:02 +03:00
parent 02210f1f8d
commit 8083ba086b
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
app="$1"

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
file="$1"
version="$2"