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 7608b17 commit e1333dbCopy full SHA for e1333db
local/install_deps.bash
@@ -14,8 +14,14 @@
14
# See the License for the specific language governing permissions and
15
# limitations under the License.
16
17
+dir=$(dirname "$0")
18
+
19
+# Delete third_party to prevent import issues while doing `python butler.py
20
+# bootstrap`.
21
+rm -rf "$dir"/../src/third_party
22
23
if [ "$(uname)" == "Darwin" ]; then
- $(dirname "$0")/install_deps_macos.bash $*
24
+ "$dir"/install_deps_macos.bash $*
25
else
- $(dirname "$0")/install_deps_linux.bash $*
26
+ "$dir"/install_deps_linux.bash $*
27
fi
0 commit comments