Commit 953bf1d9 authored by Dick Hollenbeck's avatar Dick Hollenbeck

kicad-install.sh: only install global fp-lib-table if non-existent

parent a54df130
......@@ -273,10 +273,12 @@ install_or_update()
echo " kicad-lib.bzr installed."
echo "step 9) as non-root, install user configuration files..."
echo "step 9) as non-root, install global fp-lib-table if none already installed..."
# install ~/fp-lib-table
make install_github_fp-lib-table
echo " kicad user-configuration files installed."
if [ ! -e ~/fp-lib-table ]; then
make install_github_fp-lib-table
echo " global fp-lib-table installed."
fi
echo "step 10) installing documentation..."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment