Formatting.

This commit is contained in:
Nick Brassel 2025-03-27 22:38:39 +11:00
parent 4ef00cd6e8
commit 1921a4808f
No known key found for this signature in database

View File

@ -2,10 +2,6 @@
# Copyright 2025 Nick Brassel (@tzarc)
# SPDX-License-Identifier: GPL-2.0-or-later
{ # this ensures the entire script is downloaded #
set -eu
################################################################################
# This script will install the QMK CLI, toolchains, and flashing utilities.
################################################################################
@ -37,6 +33,10 @@ set -eu
# Any other configurable items listed above may be specified in the same way.
################################################################################
{ # this ensures the entire script is downloaded #
set -eu
# Work out which `sed` to use
command -v gsed >/dev/null 2>&1 && SED=gsed || SED=sed