Test to see if the binary already exists.

This commit is contained in:
perfectra1n 2023-02-19 21:57:12 -08:00
parent 626253d791
commit b0644d7372

@ -18,6 +18,10 @@
# The directory where this plugin is located.
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ ! -f $CURRENT_DIR/tmux-mem-cpu-load ] && ! $(builtin type -P "tmux-mem-cpu-load" &> /dev/null) ; then
tmux run-shell "echo \"tmux-mem-cpu-load not found. Attempting to build.
\""
pushd $CURRENT_DIR #Pushd to the directory where this plugin is located.
# Attempt to rebuild the plugin and log any errors in the tmux display window.
@ -40,5 +44,6 @@ else
\""
exit 1
fi
popd
fi