From 32ec532697bd24d8cfa051274b72775e4034033c Mon Sep 17 00:00:00 2001 From: imgurbot12 Date: Mon, 7 Aug 2023 16:07:20 -0700 Subject: [PATCH] feat: install rmenu to cargo-bin path --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 0ba7794..4ed0322 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,13 @@ CARGO=cargo FLAGS=--release DEST=$(HOME)/.config/rmenu +INSTALL=$(CARGO_PATH)/bin install: build deploy deploy: mkdir -p ${DEST} + cp -vf ./target/release/rmenu ${INSTALL}/rmenu cp -vf ./target/release/desktop ${DEST}/drun cp -vf ./target/release/run ${DEST}/run cp -vf ./rmenu/public/config.yaml ${DEST}/config.yaml