wmtools/install.sh

13 lines
186 B
Bash
Raw Normal View History

2023-11-22 22:42:13 +01:00
#!/bin/bash
build () {
i="$1"
cd "./$dir" || exit
nimble install -y
if [[ $i == "install" ]]; then
cp -v "wmtools" "$HOME/.local/bin/wmtools"
fi
}
build $1