From 67e73a1aa20cddecf96b30b28f266dd57c11f494 Mon Sep 17 00:00:00 2001 From: MARKMENTAL Date: Sat, 18 Oct 2025 20:04:09 -0400 Subject: [PATCH] Change shell interpreter from ash to sh --- compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.sh b/compile.sh index 1d7488d..ec09bb9 100755 --- a/compile.sh +++ b/compile.sh @@ -1,3 +1,3 @@ -#!/bin/ash +#!/bin/sh g++ -std=c++17 main.cpp -o tux-dock && echo "tux-dock successfully compiled!"