[Cruisecontrolrb-users] No submodule mapping found?
11 views
Skip to first unread message
Grant Olson
unread,
Apr 29, 2010, 3:07:43 PM4/29/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cruisecont...@rubyforge.org
I'm trying to configure a rails project hosted on github with
CruiseControl. It's a project that I can manually clone and build just
fine.
The whole "./cruise add ..." command seems to work fine, but when I run
'./cruise start', I keep getting this error:
/Users/grant/.cruise/projects/pikimal-master/work grant$ git submodule
init
No submodule mapping found in .gitmodules for path 'Pikimal'
But I'm not using any git submodules.
Has anyone seen a similar error? Know why cruisecontrol is running
"git submodule init"? Any tips on how to fix it? Would any more info
be helpful?
Thanks,
-Grant
Chad Woolley
unread,
Apr 29, 2010, 3:40:44 PM4/29/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cruisecont...@rubyforge.org
do you get the same error when running 'git submodule init' from a
fresh clone? If so, you have something wrong. If you have no
submodules, delete .gitmodules, and any references to submodules in
.git/config, and ensure the Pikimal dir does not have a .git dir in
it. If that fixes the problem, check in and do the same on your
cruise working copy.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cruisecont...@rubyforge.org
On 4/29/10 3:40 PM, Chad Woolley wrote:
> do you get the same error when running 'git submodule init' from a
> fresh clone? If so, you have something wrong. If you have no
> submodules, delete .gitmodules, and any references to submodules in
> .git/config, and ensure the Pikimal dir does not have a .git dir in
> it. If that fixes the problem, check in and do the same on your
> cruise working copy.
>
>
Thanks. That was enough to get me going. Just for the archives...
There was some sort of stale file floating around. If I switched to a
branch that works on my local git repository, I'd get the warning:
warning: unable to unlink Pikimal: Operation not permitted
When I removed the directory and commited, things started working again.