I would like to setup git deployment on my Windows server, but I'm having some trouble changing director from the git post-receive event. I get a "No such file or directory" error.
I have the following setup:
- a git repository on a Windows share //share/git/repo/
a post-receive configure as following:
#!/bin/shecho "Building the Arla Solution"
cd /c/Builds
unset GIT_DIR
git pull origin master
echo "Doing some post build actions..."
When I do a commit/push to the repository if fails on the line: cd C:/Builds
.
I've setup something similar on a Linux server (VPS) without any problems. I think the problem is how I've formatted the change directory.
Any suggestions?
git
's bash (AFAIK) is unfamiliar withC:
,Try replacing the relevant line to
/c/Builds
Keep in mind
bash
is case sensitive unlikeWindows