From 3355467e5adcaf136519a7fdb2890c9c8bf4eb8c Mon Sep 17 00:00:00 2001 From: Serge Bazanski Date: Sun, 11 Jul 2021 00:39:30 +0000 Subject: [PATCH] engine/dist_start.sh: remove (not used anymore) --- engine/dist_start.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 engine/dist_start.sh diff --git a/engine/dist_start.sh b/engine/dist_start.sh deleted file mode 100644 index b041f61..0000000 --- a/engine/dist_start.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash - -# Abrasion distribution startup script. -# To whom may read this: Abrasion-based programs do not require any CWD -# shenanigans, and you don't really have to use this script at all! It's here -# so that logging-related env vars are set to some sane defaults. - -# Typical cursedness to get the path to the directory containing this script. -# We refer to this directory as the 'distribution root'. It should contain the -# engine/ and assets/ directories. -DST="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" - -# Show a backtrace on panic. -export RUST_BACKTRACE=1 -# Enable info logging. -export RUST_LOG=info -# For debug logs, uncomment the following line. -#export RUST_LOG=debug - -# Now, just run abrasion! -exec "$DST/engine/engine"