Skip to content

Commit

Permalink
fix: apps; only select true git repos
Browse files Browse the repository at this point in the history
  • Loading branch information
blaggacao committed Mar 11, 2024
1 parent fd6089e commit 6b09ed7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/overlays/tools/apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ lib.lazyDerivation {
done
for app in $(ls "$FRAPPE_APPS_ROOT"); do
if [[ ! -e "$FRAPPE_APPS_ROOT/$app/.git" ]]; then
continue
fi
GIT_ARGS=(
"--git-dir" "$FRAPPE_APPS_ROOT/$app/.git"
"--work-tree" "$FRAPPE_APPS_ROOT/$app"
Expand Down

0 comments on commit 6b09ed7

Please sign in to comment.