Skip to content

Commit

Permalink
Fix init
Browse files Browse the repository at this point in the history
  • Loading branch information
onurozuduru committed Mar 4, 2024
1 parent e05cc82 commit 600acf5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion sources/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ init_from_dot_dir()
exit 1
fi

local all_dot_files=$(find "${DOT_DIR_PATH}" -type f -printf '%P\n')
local all_dot_files=$(find "${DOT_DIR_PATH}" -type f ! -path "*.*/*" \( ! -iname ".*" \) -printf '%P\n')

for dot_file in ${all_dot_files}
do
Expand Down
1 change: 0 additions & 1 deletion sources/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,3 @@ if [[ "${MODE}" == "${MODES[-a]}" ]]; then
else
${MODE}
fi

0 comments on commit 600acf5

Please sign in to comment.