aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc4
-rw-r--r--.zshrc4
-rw-r--r--install.sh2
3 files changed, 2 insertions, 8 deletions
diff --git a/.bashrc b/.bashrc
index b65626c..dff0eed 100644
--- a/.bashrc
+++ b/.bashrc
@@ -137,9 +137,5 @@ if [ ! -d /usr/share/autojump ]; then
fi
. /usr/share/autojump/autojump.sh
-# proxy
-export http_proxy='http://localhost:7890'
-export https_proxy='http://localhost:7890'
-
# fzf
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
diff --git a/.zshrc b/.zshrc
index e836e6a..dcf7c3c 100644
--- a/.zshrc
+++ b/.zshrc
@@ -17,10 +17,6 @@ if [ ! -d /usr/share/autojump ]; then
fi
. /usr/share/autojump/autojump.zsh
-# proxy
-export http_proxy='http://127.0.0.1:7890'
-export https_proxy='http://127.0.0.1:7890'
-
# zplug
if [ ! -d ~/.zplug ]; then
echo 'Installing zplug ... '
diff --git a/install.sh b/install.sh
index 9dd046d..b366afe 100644
--- a/install.sh
+++ b/install.sh
@@ -19,6 +19,8 @@ usage() {
base_install() {
echo "--------- Install Base Packages Now ---------"
if command -v apt > /dev/null; then
+ apt update
+ apt upgrade
apt install git \
curl \
cmake \