Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install.sh #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
## UNCOMMENT THESE LINES IF YOU WANT TO BUILD FROM SOURCE
#echo Removing pre-built binary
#rm mangodl
#rm /usr/local/bin/mangodl
#echo Installing the needed dependencies
#go get -d ./...
#echo Building...
#go build
#go build main.go
#mv main mangodl

# make the file executable
chmod +x mangodl
# install the executable to /usr/bin
sudo install -m755 mangodl /usr/bin/mangodl
sudo install -m755 mangodl /usr/local/bin/mangodl