diff options
author | vaxerski <[email protected]> | 2023-04-27 14:56:43 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-04-27 14:56:43 +0100 |
commit | f23455e592bca14e0abd9249de467cc71cd2850e (patch) | |
tree | 97b1f3dc4e43aac30212f4185b405f7f0734a7b3 /Makefile | |
parent | 5ce76cd0b01fcdcb8436b6ae1447fb17c17c13a5 (diff) | |
download | Hyprland-f23455e592bca14e0abd9249de467cc71cd2850e.tar.gz Hyprland-f23455e592bca14e0abd9249de467cc71cd2850e.zip |
makefile: use -f in copies to avoid errors on running hl
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,8 +40,8 @@ install: mkdir -p ${PREFIX}/share/wayland-sessions mkdir -p ${PREFIX}/bin - cp ./build/Hyprland ${PREFIX}/bin - cp ./hyprctl/hyprctl ${PREFIX}/bin + cp ./build/Hyprland ${PREFIX}/bin -f + cp ./hyprctl/hyprctl ${PREFIX}/bin -f if [ ! -f ${PREFIX}/share/wayland-sessions/hyprland.desktop ]; then cp ./example/hyprland.desktop ${PREFIX}/share/wayland-sessions; fi mkdir -p ${PREFIX}/share/hyprland cp ./assets/wall_2K.png ${PREFIX}/share/hyprland |