nautilus-subliminal icon indicating copy to clipboard operation
nautilus-subliminal copied to clipboard

Install script fails (pushd/popd not supported)

Open ComputingFroggy opened this issue 8 years ago • 4 comments

Hello,

The installation instructions states to run: wget https://raw.githubusercontent.com/Diaoul/nautilus-subliminal/master/install.sh -O - | sudo sh However the bourne shell (sh) does not know the command pushd ... so the script will fail. bash should be used. So the command would write: wget https://raw.githubusercontent.com/Diaoul/nautilus-subliminal/master/install.sh -O - | sudo bash

Cheers.

ComputingFroggy avatar Aug 26 '16 22:08 ComputingFroggy

not working on fedora

delmicio avatar Oct 26 '16 04:10 delmicio

I need to remove pushd/popd calls from the script.

Diaoul avatar Oct 26 '16 08:10 Diaoul

@Diaoul: did you run bash instead of sh ? With bash pushd/popd will work !

ComputingFroggy avatar Oct 26 '16 15:10 ComputingFroggy

so just change installation notes to:

wget https://raw.githubusercontent.com/Diaoul/nautilus-subliminal/master/install.sh -O - | sudo bash Or using curl: curl -fsSL https://raw.githubusercontent.com/Diaoul/nautilus-subliminal/master/install.sh -O - | sudo bash

ghost avatar Dec 27 '16 18:12 ghost