mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
fix number 2
This commit is contained in:
parent
45a5d18245
commit
6ef065aed8
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ for folder in "${folders[@]}"; do
|
|||
mkdir -p "$HOME/$file"
|
||||
fi
|
||||
# Check if the file is a regular file and not in the exclude_folders
|
||||
if [[ -f "$temp_folder/$file" ]] && ! file_in_excludes "$file" && [[! " ${modified_files[@]} " =~ " ${file} " ]]; then
|
||||
if [[ -f "$file" ]] && ! file_in_excludes "$file" && [[ ! " ${modified_files[@]} " =~ " ${file} " ]]; then
|
||||
# Construct the destination path
|
||||
destination="$HOME/$file"
|
||||
echo "Replacing \"$destination\" ..."
|
||||
|
|
|
|||
Loading…
Reference in a new issue