Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Dec 6, 2020
1 parent 7b93051 commit 6b3073f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tools/tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ sync() {

install() {
bold "tf install"
if [ "$(${python} -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')" = "3.9" ]; then
echo "- python 3.9 [skip]"
return
fi
if [ "$(uname -sm)" = "Darwin arm64" ]; then
echo "- arm64 [skip]"
return
Expand Down Expand Up @@ -78,6 +82,10 @@ schema() {

metadata() {
bold "tf metadata"
if [ "$(${python} -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')" = "3.9" ]; then
echo "- python 3.9 [skip]"
return
fi
if [ "$(uname -sm)" = "Darwin arm64" ]; then
echo "- arm64 [skip]"
return
Expand Down

0 comments on commit 6b3073f

Please sign in to comment.