From 000234d0f3191f430b572a2868a71460154c2600 Mon Sep 17 00:00:00 2001 From: dann-merlin <55287004+dann-merlin@users.noreply.github.com> Date: Fri, 21 Feb 2025 10:09:18 +0100 Subject: [PATCH] Fix shebang The setup.sh script appears to use some non-posix compliant syntax. Specifically $(("new_number")) in line 80 resulted in an error when using dash as /bin/sh. This commit therefore updates the shebang to use /bin/bash instead. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 3f2e535..5253a85 100755 --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ## Keyitdev https://github.com/Keyitdev/sddm-astronaut-theme ## Copyright (C) 2022-2025 Keyitdev