diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-02-04 01:06:15 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-02-04 01:06:16 +0100 |
commit | edaa66f6223b1a4fc21cb26ae5e78f23893e56d7 (patch) | |
tree | 255bffa344191c2ac2226561845293c5e8cb4be0 /launcher/Launcher.in | |
parent | 58d9ceda4bf4c78d62d4ed4ee4242147dda9d910 (diff) | |
download | PrismLauncher-edaa66f6223b1a4fc21cb26ae5e78f23893e56d7.tar.gz PrismLauncher-edaa66f6223b1a4fc21cb26ae5e78f23893e56d7.tar.bz2 PrismLauncher-edaa66f6223b1a4fc21cb26ae5e78f23893e56d7.zip |
fix: use /usr/bin/env bash in launch script
This should make it possible to run these scripts on any system, as
/bin/bash is not standard! Notably this fixes the script on NixOS.
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/Launcher.in')
-rwxr-xr-x | launcher/Launcher.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Launcher.in b/launcher/Launcher.in index 68fac26a..1a23f255 100755 --- a/launcher/Launcher.in +++ b/launcher/Launcher.in @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Basic start script for running the launcher with the libs packaged with it. function printerror { |