From 21730603383d25c49591bed935e2d1ae60ae54d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20=C3=85hall?= Date: Wed, 20 Aug 2025 10:33:34 +0200 Subject: [PATCH] Fixed hilariously wrong shebang --- static/js/app.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.mjs b/static/js/app.mjs index dba1c17..8ad767a 100644 --- a/static/js/app.mjs +++ b/static/js/app.mjs @@ -1244,7 +1244,7 @@ class ScriptsList extends Component { const script = { Group: 'Uncategorized', Name: name, - Source: "%!/bin/bash\n", + Source: "#!/bin/bash\n", } fetch(`/scripts/update/0`, { method: 'POST',