-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add automatic install script for Linux #10
Conversation
README.md
Outdated
@@ -24,6 +24,12 @@ The .exe file is an installer - just open it and install the native application. | |||
|
|||
### Installation on Linux | |||
|
|||
Run script: | |||
|
|||
`wget -O - https://raw.githubusercontent.com/Virusmater/firefox-webserial/master/install.sh | bash` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is is possible to use curl
for this? It is more likely to have curl installed by default on a Linux distro than wget. Also curl is used anyway in the .sh script.
The URL has to be adjusted to point to the original repo 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
install.sh
Outdated
@@ -0,0 +1,13 @@ | |||
#!/bin/bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A better place for this file would be native/install/linux_x86_64.sh
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
…dir, use cURL to download the script
Yes, I know it is not always secure, but it helps install on multiple machines.
If merged will be required to change README path from my repo to the main one.