Remove bindata references from bootstrap.py

loading-screen
Noah 2021-07-13 20:16:16 -07:00
parent 8603c43c58
commit 2885b2c3d0
1 changed files with 1 additions and 8 deletions

View File

@ -55,7 +55,7 @@ def main():
"Ensure your SSH keys are set up on git.kirsle.net to easily clone repos.\n"
"Also check your $GOPATH is set and your $PATH will run binaries installed,\n"
"for e.g. GOPATH=$HOME/go and PATH includes $HOME/go/bin; otherwise the\n"
"go-bindata command won't function later."
"'make doodads' command won't function later."
.format(root=ROOT)
)
input("Press Enter to begin.")
@ -86,12 +86,6 @@ def install_deps():
else:
print("Warning: didn't detect your package manager to install SDL2 and other dependencies")
# Get the bindata command. Do this from OUTSIDE a Go module folder, so that
# it installs the command globally.
os.chdir("/tmp")
shell("go get -u git.kirsle.net/go/bindata/...")
os.chdir(ROOT)
def clone_repos():
@ -133,7 +127,6 @@ def copy_assets():
def install_doodad():
"""Install the doodad CLI tool from the doodle repo."""
must_shell("make bindata-dev")
must_shell("go install git.kirsle.net/apps/doodle/cmd/doodad")