Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3867 from bacongobbler/3862-remove-dangling-cleanup
Browse files Browse the repository at this point in the history
fix(builder): call ls rather than using a wildcard
  • Loading branch information
Matthew Fisher committed Jun 15, 2015
2 parents 02364d8 + 9b6cc58 commit 87d2ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/rootfs/etc/confd/templates/check-repos
Expand Up @@ -4,7 +4,7 @@ export ETCD=${ETCD:-$HOST:4001}

cd $(dirname $0) # absolute path

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

0 comments on commit 87d2ba3

Please sign in to comment.