summaryrefslogtreecommitdiff
path: root/gitclone
diff options
context:
space:
mode:
Diffstat (limited to 'gitclone')
-rwxr-xr-xgitclone7
1 files changed, 5 insertions, 2 deletions
diff --git a/gitclone b/gitclone
index 4f811b3f..70b4e7f7 100755
--- a/gitclone
+++ b/gitclone
@@ -1,6 +1,7 @@
-#!/usr/bin/env bash
+#!/usr/bin/env sh
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
+# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
# SPDX-License-Identifier: GPL-3.0-only
@@ -47,7 +48,9 @@ read_config()
bkup_url=${2}
;;
esac
- done <<< $(eval "awk '${awkstr}' resources/git/revisions")
+ done << EOF
+ $(eval "awk '${awkstr}' resources/git/revisions")
+EOF
}
verify_config()