Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7709)

Unified Diff: bin/deps-and-gyp

Issue 1415193006: bin/deps-and-gyp: deal with corner cases cleanly (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/deps-and-gyp
diff --git a/bin/deps-and-gyp b/bin/deps-and-gyp
old mode 100644
new mode 100755
index f39fc69135946a7b88993ce44d0e414301e81eaa..06f0fd5d90147e22b46fcc56df91b73968b8e243
--- a/bin/deps-and-gyp
+++ b/bin/deps-and-gyp
@@ -34,10 +34,7 @@ if ! [ -f DEPS ]; then
exit 1
fi
-if [ "$(git hash-object DEPS)" != "$(git config sync-deps.last)" ] ; then
- GIT_SYNC_DEPS_QUIET=1 python tools/git-sync-deps || exit
- git config sync-deps.last "$(git hash-object DEPS)"
-fi
+GIT_SYNC_DEPS_QUIET=1 python tools/git-sync-deps || exit
catifexists() { if [ -f "$1" ]; then cat "$1"; fi; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698