We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a92609c commit 7dc8076Copy full SHA for 7dc8076
tools/build_steps.sh
@@ -38,11 +38,17 @@ function clean_code_local {
38
# XXX no need to do this
39
# fill_submodule "$repo_dir"
40
pushd $repo_dir
41
+ echo in $repo_dir
42
git fetch origin --tags
43
+ echo after git fetch origin
44
git checkout $build_commit
45
+ echo after git checkout $build_commit
46
git clean -fxd
47
+ echo after git clean
48
git reset --hard
49
+ echo after git reset
50
git submodule update --init --recursive
51
+ echo after git submodule update
52
popd
53
}
54
0 commit comments