Fix the shared env project path.

This commit is contained in:
2026-05-06 14:56:39 -07:00
parent 5c12ff4a3b
commit 2c1fba93d9

View File

@@ -91,13 +91,13 @@ if [[ ! -d "$env_shared_dir" ]]; then
export BRANCH="dev" export BRANCH="dev"
fi fi
git clone https://git.hyperling.com/me/env-shared \ git clone https://git.hyperling.com/me/env-shared \
--branch=$BRANCH ~/$env_shared_dir --branch=$BRANCH "$env_shared_dir"
cp -v ~/$env_shared_dir/rc_shared.sh ~/.rc_shared cp -v "$env_shared_dir"/rc_shared.sh ~/.rc_shared
cp -v ~/$env_shared_dir/vimrc.vim ~/.vimrc cp -v "$env_shared_dir"/vimrc.vim ~/.vimrc
if [[ ! -d ~/bin ]]; then if [[ ! -d ~/bin ]]; then
mkdir -pv ~/bin mkdir -pv ~/bin
fi fi
cp -v ~/$env_shared_dir/bin-shared/* ~/bin/ cp -v "$env_shared_dir"/bin-shared/* ~/bin/
else else
echo -e "`date` - Already installed, updating." echo -e "`date` - Already installed, updating."
update-shared update-shared