Skip to content

Commit

Permalink
Do not run install command as root (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 authored May 7, 2024
1 parent d4d9069 commit 58a06ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ release:
$(CARGO) build --workspace --all-features --release
$(CARGO) test --workspace --all-features --release

install: release
sudo install -Dm755 target/release/pica $(DESTDIR)$(BINDIR)
install:
install -Dm755 target/release/pica $(DESTDIR)$(BINDIR)

clean:
$(CARGO) clean
Expand Down

0 comments on commit 58a06ed

Please sign in to comment.