tomrijndorp/vscode-finditfaster

Bug in NixOs

Opened this issue · 1 comments

This is an issue found at least in NixOS, the problem are the shebangs in the scripts that the extension uses,

right now the scripts use this shebang: #!/bin/bash but this returns an error as suspected in Issue #44

I revolved my issue for my system when I changed the shebangs to use sh instead of bash, other option is to change the shebang to !/usr/bin/env bash like said in the issue above.

so for anyone in NixOs with this issue, this is a workaround.

To resolve the issues you would need to modify the shebang situated in: ~/.vscode/extensions/tomrijndorp.find-it-faster-0.0.31/ this would depend in the extension version.

I think this should be written in known issues for any nixos user