Skip to content

Commit 2d964bd

Browse files
Merge pull request #130 from bradmwilliams/ansible-rebuild-fix-2
Forcing dictionary sort (part 2)
2 parents 319e0bf + af44af3 commit 2d964bd

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
@@ -30,7 +30,7 @@ pushd "$PACKAGES_DIR"
3030

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

3535
popd
3636

0 commit comments

Comments
 (0)