13 lines
285 B
Bash
13 lines
285 B
Bash
|
#!/usr/bin/env bash
|
||
|
# The purpose of this script is to install a Firefox profile from a save location.
|
||
|
|
||
|
source "$(dirname "$0")/variables.conf"
|
||
|
|
||
|
# Remove current profile
|
||
|
rm -r $firefox_data_path/$profile_name
|
||
|
|
||
|
# Install profile
|
||
|
7z x $local_path/$file_name -o$firefox_data_path
|
||
|
|
||
|
exit 0
|