If the path of the script I am passing to rofigen.sh has a space in it, the script breaks even if I use a backslash or double/single quotes to escape it.
The issue appears to be line 3 of rofigen: source $1
I replaced it with source "$1" and that fixed the issue for me,
Related to issue #4
If the path of the script I am passing to rofigen.sh has a space in it, the script breaks even if I use a backslash or double/single quotes to escape it.
The issue appears to be line 3 of rofigen: source $1
I replaced it with source "$1" and that fixed the issue for me,