From 9a5b9706c2bcf33dd2de2114ebc0cb223d7ad809 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Thu, 25 Mar 2021 07:08:52 +0000 Subject: [PATCH] Fix AppImage (#1263) --- .editorconfig | 3 +++ Packaging/nix/AppRun | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) mode change 100644 => 100755 Packaging/nix/AppRun diff --git a/.editorconfig b/.editorconfig index 3081bce9f..c3e3f73c5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -36,6 +36,9 @@ end_of_line = lf [*.txt] end_of_line = lf +[AppRun] +end_of_line = lf + [CMakeLists.txt] indent_style = space indent_size = 2 diff --git a/Packaging/nix/AppRun b/Packaging/nix/AppRun old mode 100644 new mode 100755 index 49258faba..ab4c2b284 --- a/Packaging/nix/AppRun +++ b/Packaging/nix/AppRun @@ -1,2 +1,2 @@ #!/bin/sh -$APPDIR/usr/bin/devilutionx --ttf-dir $APPDIR/usr/share/fonts/truetype/ +exec "$APPDIR/usr/bin/devilutionx" --ttf-dir "$APPDIR/usr/share/fonts/truetype/"