summaryrefslogtreecommitdiff
path: root/gitclone
diff options
context:
space:
mode:
Diffstat (limited to 'gitclone')
-rwxr-xr-xgitclone7
1 files changed, 2 insertions, 5 deletions
diff --git a/gitclone b/gitclone
index 70b4e7f7..4f811b3f 100755
--- a/gitclone
+++ b/gitclone
@@ -1,7 +1,6 @@
-#!/usr/bin/env sh
+#!/usr/bin/env bash
# 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
@@ -48,9 +47,7 @@ read_config()
bkup_url=${2}
;;
esac
- done << EOF
- $(eval "awk '${awkstr}' resources/git/revisions")
-EOF
+ done <<< $(eval "awk '${awkstr}' resources/git/revisions")
}
verify_config()