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 83870a1 commit 40b6d4bCopy full SHA for 40b6d4b
tools/build_steps.sh
@@ -60,18 +60,16 @@ EOF
60
61
function clean_code {
62
set -ex
63
- # Copied from common_utils.sh, with added debugging
64
local build_commit=$1
65
[ -z "$build_commit" ] && echo "build_commit not defined" && exit 1
+ git submodule update --init --recursive
66
pushd OpenBLAS
67
git fetch origin --tags
68
echo after git fetch origin
69
git checkout $build_commit
70
echo after git checkout $build_commit
71
git clean -fxd
72
echo after git clean
73
- git submodule update --init --recursive
74
- echo after git submodule update
75
popd
76
}
77
0 commit comments