Repository: incubator-sentry Updated Branches: refs/heads/master bd2c5514b -> 890456b9c
SENTRY-602: Pre commit build script should update the snapshot dependencies (Reviewed by:Prasad Mujumdar) Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/890456b9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/890456b9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/890456b9 Branch: refs/heads/master Commit: 890456b9c6312b3f7663b636b28e5d079e13c410 Parents: bd2c551 Author: Sravya Tirukkovalur <[email protected]> Authored: Wed Dec 24 17:01:22 2014 -0800 Committer: Sravya Tirukkovalur <[email protected]> Committed: Wed Dec 24 17:01:22 2014 -0800 ---------------------------------------------------------------------- dev-support/test-patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/890456b9/dev-support/test-patch.py ---------------------------------------------------------------------- diff --git a/dev-support/test-patch.py b/dev-support/test-patch.py index 449fe0e..7e701c3 100644 --- a/dev-support/test-patch.py +++ b/dev-support/test-patch.py @@ -136,7 +136,7 @@ def mvn_clean(result, mvn_repo, output_dir): result.fatal("failed to clean project (exit code %d)" % (rc)) def mvn_install(result, mvn_repo, output_dir): - rc = execute("mvn install -DskipTests -Dmaven.repo.local=%s 1>%s/install.txt 2>&1" % (mvn_repo, output_dir)) + rc = execute("mvn install -U -DskipTests -Dmaven.repo.local=%s 1>%s/install.txt 2>&1" % (mvn_repo, output_dir)) if rc != 0: result.fatal("failed to build with patch (exit code %d)" % (rc))
