ui icon indicating copy to clipboard operation
ui copied to clipboard

Install Option Removed from Makefile

Open ttepatti opened this issue 5 months ago • 0 comments

Hello,

I believe the "install" option has been removed from the project's Makefile, making the project impossible to install when following the steps outlined in the README file:

git clone https://github.com/bettercap/ui.git ~/ui
cd ~/ui
make deps
make build
sudo make install

On the final step, you'll receive:

make: *** No rule to make target 'install'. Stop.

I believe this is due to a change that happened in the Makefile 3 weeks ago, in the following commit: https://github.com/bettercap/ui/commit/18178a795671599b0f2f2a249eab362a8a363363

It looks like the install section of the Makefile was removed, specifically:

install: build
	@echo "installing to /usr/local/share/bettercap/ui ..."
	@cp -rf dist/ui /usr/local/share/bettercap/ui

I'm not sure if the Makefile needs to be updated, or the README instructions 😅 But either way, I wanted to bring this to your attention.

Thanks!

ttepatti avatar Sep 20 '24 04:09 ttepatti