mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-09 18:19:23 +01:00
install: add detecting broken symlinks before corepack. Also sleep so the warnings can be seen
This commit is contained in:
parent
89a8c1772c
commit
a7e5cc2aa3
8
install
8
install
@ -54,11 +54,19 @@ if hash pre-commit 2> /dev/null; then
|
||||
pre-commit gc
|
||||
fi
|
||||
|
||||
if hash symlinks 2> /dev/null; then
|
||||
symlinks -d ~/.local/bin/
|
||||
else
|
||||
echo "WARNING! Executable named symlinks not found in PATH."
|
||||
sleep 3
|
||||
fi
|
||||
|
||||
if hash corepack 2> /dev/null; then
|
||||
corepack enable --install-directory ~/.local/bin/
|
||||
corepack enable npm --install-directory ~/.local/bin/
|
||||
else
|
||||
echo "WARNING! corepack is not installed."
|
||||
sleep 3
|
||||
fi
|
||||
|
||||
if [ "$(id -u)" == "0" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user