Clean scripts, remove sudo requirement Add python dependencies Correctly symlink and add poetry Update make clean Add python2 to dependencies Fix pyenv install Use pyenv to install python Update .gitignore Install git and keybase
17 lines
307 B
Bash
17 lines
307 B
Bash
#!/bin/bash
|
|
#
|
|
# After running this script:
|
|
# 1. keybase is installed
|
|
#
|
|
|
|
# 1.keybase is installed
|
|
if [ ! hash fish ] 2>/dev/null; then
|
|
|
|
printf "Installing keybase...\n"
|
|
|
|
curl --remote-name https://prerelease.keybase.io/keybase_amd64.deb
|
|
sudo apt install ./keybase_amd64.deb
|
|
run_keybase
|
|
|
|
fi
|