mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-27 07:44:18 +00:00
Remove unnecessary mkdirs
This commit is contained in:
parent
589621f43e
commit
8ef8fba876
@ -265,13 +265,13 @@ sanitize() {
|
|||||||
# Back up keybinds
|
# Back up keybinds
|
||||||
if [ "$exported" -eq 1 ]; then
|
if [ "$exported" -eq 1 ]; then
|
||||||
echo "Backing up all saved keybinds..."
|
echo "Backing up all saved keybinds..."
|
||||||
mkdir -p "$backup_path" && cp -r "$mappings_dir/." "$backup_path/keybinds/"
|
cp -r "$mappings_dir/." "$backup_path/keybinds/"
|
||||||
echo -e "Done.\n"
|
echo -e "Done.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Wipe the user directory
|
# Wipe the user directory
|
||||||
echo "Wiping USER directory..."
|
echo "Wiping USER directory..."
|
||||||
mkdir -p "$backup_path" && mv "$user_dir" "$backup_path/userbackup_$(date +"%Y%m%d-%H%M%S")"
|
mv "$user_dir" "$backup_path/userbackup_$(date +"%Y%m%d-%H%M%S")"
|
||||||
echo -e "Done.\n"
|
echo -e "Done.\n"
|
||||||
|
|
||||||
# Restore custom keybinds
|
# Restore custom keybinds
|
||||||
|
Loading…
Reference in New Issue
Block a user