Created
November 25, 2016 09:17
-
-
Save dyoungwd/a819c5e7cc577b6e01bc54ab015af912 to your computer and use it in GitHub Desktop.
Script to install koala-app Less / Sass compiler on Fedora
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#Script to install Koala-App | |
#Koala is a GUI application for Less, Sass, Compass and CoffeeScript compilation | |
#http://koala-app.com/ | |
#Script by D4zzy | |
# Install wget if not installed | |
sudo dnf install wget | |
# Download Koala App | |
wget https://dl.dropboxusercontent.com/u/22522100/koala.zip | |
# Extract files | |
unzip koala.zip | |
# Fix to create a symlink between libgudev-1.0.so.0 and libudev.so.0. | |
sudo ln -s /usr/lib64/libgudev-1.0.so.0 /usr/lib64/libudev.so.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment