Help with css regenerate script for sass

Hi!

So i managed to ‘fix’ adwaita’s scss files, but now i have a whole other issue - the shel script for sass isn’t working, i get the following error:

./parse-sass.sh
bash: ./parse-sass.sh: /usr/bin/bash: bad interpreter: no such file or directory

The .sh contains the following:

#!/usr/bin/bash

bundle exec sass --update --sourcemap=none .

What do i have to do to make it work?

Regards,

On Mon 10 Nov 2014 03:16:01 PM CST, holden87 wrote:

#!/usr/bin/bash <====

What do i have to do to make it work?

Hi
Run the command :wink:


which bash


Cheers Malcolm °¿° LFCS, SUSE Knowledge Partner (Linux Counter #276890)
SUSE Linux Enterprise Desktop 12 GNOME 3.10.1 Kernel 3.12.28-4-default
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below… Thanks!

type -a bash
which type

:wink:

Although what you are trying to do is.

#!/usr/bin/env bash

Thanks guys!