Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
save
  • Loading branch information
Nikhil Thorat committed Sep 6, 2019
commit 023a80edb831d07ccea0a2034ce1348dc7823ad3
10 changes: 5 additions & 5 deletions scripts/diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ console.log('~~~~~~~~~~~~~~~~~~~~~~');
exec(
`git clone --depth=1 --single-branch ` +
`https://github.com/tensorflow/tfjs ${CLONE_MASTER_PATH}`);
exec(
`cd ${CLONE_MASTER_PATH} && ` +
`git fetch origin ${mergeBase} && ` +
`git checkout ${mergeBase} && ` +
`cd ..`);

shell.cd(CLONE_MASTER_PATH);
exec(`git fetch origin ${mergeBase}`);
exec(`git checkout ${mergeBase}`);
shell.cd('..');

let triggerAllBuilds = false;
let whitelistDiffOutput = [];
Expand Down