Commit fb9e1493 authored by boklm's avatar boklm Committed by morgan
Browse files

Bug 41168: Fix check in update_responses deploy script

The check for modified files from other channels was inverted.
parent 32537994
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ echo "update_responses_commit: $update_responses_commit"
cd "$update_dir"
git fetch
changed_files="\$(git diff --name-only HEAD $update_responses_commit)"
if ! echo "\$changed_files" | grep -qv "$tbb_version_type"
if echo "\$changed_files" | grep -qv "$tbb_version_type"
then
  echo >&2 "Error: checking out new update_response_commit will changes"
  echo >&2 "some files outside of the $tbb_version_type directory:"