The "release_path" (/c/foo/bar) does not exist #3556
Unanswered
acharseth
asked this question in
Help needed
Replies: 1 comment
-
Based on googling it looks like you either have to be administrator in Windows or have "Windows developer mode" enabled (dev settings > dev mode > "enable installing apps from any source"). Ref. eg. https://gist.github.com/huenisys/1efb64e57c37cfab7054c65702588fce. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to run deployer on my Windows laptop under git bash.
It seem to work fine up to after
run export GIT_TERMINAL_PROMPT="0"
...The following command fails:
This gives error message:
The problem is that this folder does exist. I suspect though that this is related to symbolic links in Windows.
if [ -h ...
checks if symbolic link exists, right? If I manually run this in agit bash
window the check fails but if I do aif [ -a...
orif [ -d...
then this test works.How can I fix this?
Beta Was this translation helpful? Give feedback.
All reactions