From ea0584a249d03dd454d3749ca505a3cd62ccb217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigrid=20Solveig=20Hafl=C3=ADnud=C3=B3ttir?= Date: Tue, 18 May 2021 15:31:05 +0200 Subject: [PATCH] build.sh: make shebang compliant --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 145a8be..40dc661 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash echo "Formatting.." clang-format -i src/uxn.h @@ -53,4 +53,4 @@ else ./bin/uxnemu bin/boot.rom fi -echo "Done." \ No newline at end of file +echo "Done."