Skip to content

Commit 87d2ba3

Browse files
author
Matthew Fisher
committed
Merge pull request #3867 from bacongobbler/3862-remove-dangling-cleanup
fix(builder): call ls rather than using a wildcard
2 parents 02364d8 + 9b6cc58 commit 87d2ba3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder/rootfs/etc/confd/templates/check-repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export ETCD=${ETCD:-$HOST:4001}
44

55
cd $(dirname $0) # absolute path
66

7-
for repo in *.git
7+
for repo in $(ls | grep .git)
88
do
99
reponame="${repo%.*}"
1010
if ! etcdctl -C $ETCD ls /deis/services/"$reponame" > /dev/null 2>&1

0 commit comments

Comments
 (0)