diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-07 17:15:28 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-07 17:15:28 +0200 |
commit | 4114fd1586bce1757b06efbc5a941df71a0a049b (patch) | |
tree | ffd5fd3953f70a04c7ffa2811e3c2f613091c72e /lib/_ak_smfiles | |
parent | 72d7fdf56ebf5f02614f1172115a687ccc7f39fa (diff) | |
download | arching-kaos-tools-4114fd1586bce1757b06efbc5a941df71a0a049b.tar.gz arching-kaos-tools-4114fd1586bce1757b06efbc5a941df71a0a049b.tar.bz2 arching-kaos-tools-4114fd1586bce1757b06efbc5a941df71a0a049b.zip |
Portable shebangs
Diffstat (limited to 'lib/_ak_smfiles')
-rwxr-xr-x | lib/_ak_smfiles | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_ak_smfiles b/lib/_ak_smfiles index 55ec381..f41d006 100755 --- a/lib/_ak_smfiles +++ b/lib/_ak_smfiles @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash source $AK_LIBDIR/_ak_log # The directory where the chunked data will be living at @@ -87,7 +87,7 @@ _ak_sm_file_joiner(){ then MAPSFILE="$1" - echo '#!/bin/bash' > script + echo '#!/usr/bin/env bash' > script # We create a script to copy all the chunks and rename them to their serialized # name produced by split when we splitted the file |