mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
11 lines
283 B
Bash
11 lines
283 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
. /etc/profile
|
|
oe_setup_addon tools.dotnet-runtime
|
|
|
|
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT="1" \
|
|
LD_LIBRARY_PATH="$ADDON_DIR/libs:$LD_LIBRARY_PATH" \
|
|
dotnet "$@"
|