Commit 9df1ff96 authored by Mikhail Tergoev's avatar Mikhail Tergoev

###Scripts version 2076###

parent cb7dffc7
...@@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://boosty ...@@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://boosty
----------------------------------------- -----------------------------------------
Changelog: Changelog:
###Scripts version 2076###
* HOTFIX - create symlink
###Scripts version 2075### ###Scripts version 2075###
* HOTFIX - fixed OpenGL mode * HOTFIX - fixed OpenGL mode
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
----------------------------------------- -----------------------------------------
История изменений: История изменений:
###Scripts version 2076###
* HOTFIX - создание симлинков
###Scripts version 2075### ###Scripts version 2075###
* HOTFIX - исправлен режим запуска OpenGL * HOTFIX - исправлен режим запуска OpenGL
......
...@@ -76,8 +76,8 @@ try_remove_dir () { ...@@ -76,8 +76,8 @@ try_remove_dir () {
export -f try_remove_dir export -f try_remove_dir
try_force_link_file () { try_force_link_file () {
if [ -z "$2" ] ; then if [ ! -f "$1" ] ; then print_info "file $1 not found for link"
print_error "no way to link file $1" elif [ -z "$2" ] ; then print_error "no way to link file $1"
else else
ln -sf "$1" "$2" ln -sf "$1" "$2"
[ "$?" != 0 ] && print_error "failed to link file $1 to $2" || return 0 [ "$?" != 0 ] && print_error "failed to link file $1 to $2" || return 0
......
#!/bin/bash #!/bin/bash
#Author: Castro-Fidel (PortWINE-Linux.ru) #Author: Castro-Fidel (PortWINE-Linux.ru)
#SCRIPTS_NEXT_VERSION=2075 #SCRIPTS_NEXT_VERSION=2076
#PORT_NEXT_VERSION=97 #PORT_NEXT_VERSION=97
######################################################################## ########################################################################
export PW_MANGOHUD=1 export PW_MANGOHUD=1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment