Fix issue with variables

This commit is contained in:
Fliegerjohn 2023-11-20 12:55:03 +01:00
parent 27cc33b17b
commit 95fb50c322
Signed by: fliegerjohn
GPG key ID: E2221D5FE4656B6A
2 changed files with 2 additions and 2 deletions

BIN
.fenix-fox.sh.swp Normal file

Binary file not shown.

View file

@ -4,9 +4,9 @@
## Variables
#
# firefox dirs
firefox_root="~/.mozilla/firefox" # Not in use jet because of a not known issue...
firefox_root="$HOME/.mozilla/firefox"
firefox_profiledir="*.default-release"
installdir=`find ~/.mozilla/firefox -name $firefox_profiledir`
installdir=`find $firefox_root -name $firefox_profiledir`
# git repo
fenix_fox="https://git.datenkastl.org/pmOS-tweaks/fenix-fox.git"