Skip to content

Commit

Permalink
remove sudo in make install as it should be specified by caller
Browse files Browse the repository at this point in the history
  • Loading branch information
hidetatz committed Jul 30, 2023
1 parent 69f75cf commit 1b4dadf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ $(BIN): $(SRCS) go.mod go.sum

.PHONY: install
install:
sudo mv ./shiba /usr/local/bin/shiba
sudo mkdir -p /usr/lib/shiba/
sudo cp -r ./std/* /usr/lib/shiba/
mv ./shiba /usr/local/bin/shiba
mkdir -p /usr/lib/shiba/
cp -r ./std/* /usr/lib/shiba/

.PHONY: format
format:
Expand Down

0 comments on commit 1b4dadf

Please sign in to comment.