-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Full repo with ref is broken #135
Comments
A couple of thoughts so far, it seems that Another possibility is that there are double quotes in the file names :(. They could perhaps be causing problems. |
I have tracked this down to some bad escaping of double quotes in the file name which is breaking line289 When |
Having a `"` (double quote) or `$` (dollar) character in a file name of a fresh source breaks when using the `--ref` flag. Work around is to strip the double quotes from the string ends then escape the `$` and `"` characters. [issue/135](freshshell#135)
Having a `"` (double quote) or `$` (dollar) character in the file name in a git repo of a fresh source breaks when using the `--ref` flag. Work around is to strip the double quotes from the string ends then escape the `$` and `"` characters. [issue/135](freshshell#135)
i am now seeing full repos failing if --ref="branchname" but working with --ref="commitid" |
I have the following in my freshrc:
Which appears to break
fresh
giving the following outputI have reproduced this in a clean Ubuntu docker image, with everything commented out apart from fresh itself and the nvm line above.
Also note, removing the
--ref
flag, fresh works fine.The text was updated successfully, but these errors were encountered: