Skip to content

Commit

Permalink
Also looking for .git files when using ctp project select command
Browse files Browse the repository at this point in the history
  • Loading branch information
AllRWeak committed Oct 3, 2024
1 parent 4a501b5 commit 24e6980
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/general/select-inventory.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ echo -n -e "${C_RST}"
SEARCH_DIR="/srv/inventories"
SEARCH_FOLDER=".git"
# shellcheck disable=SC2207
FOLDERS=($(find -L "$SEARCH_DIR" \( -type d -o -type l \) -name "$SEARCH_FOLDER" -exec dirname {} \; | sort))
FOLDERS=($(find -L "$SEARCH_DIR" \( -type d -o -type l -o -type f \) -name "$SEARCH_FOLDER" -exec dirname {} \; | sort))

#--------------------End of variables, start of script--------------------#

Expand Down
2 changes: 1 addition & 1 deletion version.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 5.6.30
version: 5.6.32

0 comments on commit 24e6980

Please sign in to comment.