mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-22 23:00:11 +00:00
11 lines
228 B
Bash
11 lines
228 B
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
# make sure errors in sourced scripts will cause this script to stop
|
||
|
set -e
|
||
|
|
||
|
this_dir="$(readlink -f "$(dirname "$0")")"
|
||
|
|
||
|
source "$this_dir"/apprun-hooks/"AppRun-hook"
|
||
|
|
||
|
exec "$this_dir"/AppRun.wrapped "$@"
|