4
0

fix_armar.sh 518 B

1234567891011121314151617
  1. #!/bin/bash
  2. # LinuxGSM fix_armar.sh module
  3. # Author: Daniel Gibbs
  4. # Contributors: https://linuxgsm.com/contrib
  5. # Website: https://linuxgsm.com
  6. # Description: Resolves issues with Arma Reforger.
  7. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  8. # Fixes: Profile directory doesn't exist.
  9. # Issue Link: https://feedback.bistudio.com/T164845
  10. if [ ! -d "${serverprofilefullpath}" ]; then
  11. fixname="Profile directory doesn't exist"
  12. fn_fix_msg_start
  13. mkdir -p "${serverprofilefullpath}"
  14. fn_fix_msg_end
  15. fi