yasintoy / Slack-Gitsin

A beautiful Slack command line interface.
GNU General Public License v3.0
606 stars 26 forks source link

Linux install script is ubuntu only #23

Open nhumrich opened 8 years ago

nhumrich commented 8 years ago

the linux install script is for ubuntu only, it has apt-get in it. It might be better to just document the requirements and tell people they will need to install them.

yigitozkavci commented 8 years ago

Actually, we are trying to be as much as end-user friendly. Maybe we should split Install process into these sections:

What do you think? @nhumrich @yasintoy

nhumrich commented 8 years ago

That would work fine.

AFAgarap commented 8 years ago

@nhumrich Sorry, my bad. I wrote that script. Perhaps we could try the setup-linux.sh be more flexible? Like it would check what is the GNU/Linux OS it's in, and then install the requirements as per the package manager for the particular OS.

Pseudocode:

if (platform == 'debian') then
    apt-get install requirements
else if (platform == 'arch') then
    pacman -S requirements
...