mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 04:41:00 +01:00
9 lines
288 B
Bash
Executable file
9 lines
288 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: Arch Linux contributors
|
|
# SPDX-License-Identifier: 0BSD
|
|
|
|
if [[ -z "${PLAYDATE_SDK_PATH:-}" ]]; then
|
|
export PLAYDATE_SDK_PATH="${XDG_DATA_HOME:-"${HOME}/.local/share"}/playdate-sdk"
|
|
fi
|
|
exec "${PLAYDATE_SDK_PATH}/bin/PlaydateSimulator" "$@"
|