Browse Source

fix(bt): missing user data directory (#3916)

pull/3963/head
Marcin Jakubowski 3 years ago
committed by GitHub
parent
commit
9fc6244fc3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lgsm/functions/core_functions.sh
  2. 2
      lgsm/functions/fix.sh
  3. 16
      lgsm/functions/fix_bt.sh

5
lgsm/functions/core_functions.sh

@ -346,6 +346,11 @@ fix_armar.sh() {
fn_fetch_function fn_fetch_function
} }
fix_bt.sh() {
functionfile="${FUNCNAME[0]}"
fn_fetch_function
}
fix_bo.sh() { fix_bo.sh() {
functionfile="${FUNCNAME[0]}" functionfile="${FUNCNAME[0]}"
fn_fetch_function fn_fetch_function

2
lgsm/functions/fix.sh

@ -43,6 +43,8 @@ if [ "${commandname}" != "INSTALL" ] && [ -z "${fixbypass}" ]; then
fix_armar.sh fix_armar.sh
elif [ "${shortname}" == "ark" ]; then elif [ "${shortname}" == "ark" ]; then
fix_ark.sh fix_ark.sh
elif [ "${shortname}" == "bt" ]; then
fix_bt.sh
elif [ "${shortname}" == "bo" ]; then elif [ "${shortname}" == "bo" ]; then
fix_bo.sh fix_bo.sh
elif [ "${shortname}" == "csgo" ]; then elif [ "${shortname}" == "csgo" ]; then

16
lgsm/functions/fix_bt.sh

@ -0,0 +1,16 @@
#!/bin/bash
# LinuxGSM fix_bt.sh module
# Author: Daniel Gibbs
# Contributors: http://linuxgsm.com/contrib
# Website: https://linuxgsm.com
# Description: Resolves an issue with Barotrauma.
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes: Missing user data directory error.
if [ ! -d "${XDG_DATA_HOME:="${HOME}/.local/share"}/Daedalic Entertainment GmbH/Barotrauma" ]; then
fixname="Missing user data directory error."
fn_fix_msg_start
mkdir -p "${XDG_DATA_HOME:="${HOME}/.local/share"}/Daedalic Entertainment GmbH/Barotrauma"
fn_fix_msg_end
fi
Loading…
Cancel
Save