Skip to content

Commit 319e0bf

Browse files
Merge pull request #129 from bradmwilliams/ansible-rebuild-fix
Forcing dictionary sort
2 parents ad0feb7 + d1483c5 commit 319e0bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansible/rebuild_module.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fi
2929
pushd "$PACKAGES_DIR"
3030

3131
# Update module digest so that pr.groovy can ensure it is run after each module change
32-
cat $(find openshift/ -name '*.py' | sort) | md5sum > $DIGEST_FILE
32+
cat $(find openshift/ -name '*.py' | sort -d) | md5sum > $DIGEST_FILE
3333
ENCODED_TGZ=$(tar c --owner=0 --numeric-owner --group=0 --mtime='UTC 2019-01-01' $(find openshift/ -name '*.py' | sort) | gzip -c -n | base64 --wrap=0)
3434

3535
popd

0 commit comments

Comments
 (0)