I'm using this example on publishing a website w/ git post receive hooks.

The hook pretty much clones the bare repo into a temporary directory, and after generating the site, removes that temporary git clone.

#!/bin/sh
# clone a repo, generate site etc
# done generating site, remove the TMP_GIT_CLONE
rm -rf $TMP_GIT_CLONE

When I do the push, all the other tasks fine, but doesn't remove all the files.

I get the follwing errors:

remote: rm: <TMP_GIT_CLONE>/.git/objects/pack: Directory not empty
remote: rm: <TMP_GIT_CLONE>/.git/objects: Directory not emppty

...

You get the idea

However, when I invoke the post-receive script directly from the command line, the rm behaves as expected.

Why?

Note: I've looked at Post-hook receive act's differently to shell, where the asker's problem had to do with being in a bare repo instead of a work-tree.

link|improve this question

Some ideas: you are using another version of rm, or another shell which has a built-in rm command? – PaĆ­lo Ebermann May 31 '11 at 18:44
I'm inclined to say that the environments are the same. which -a rm only returns one (logged in). It's on FreeBSD 7.2 (nearlyfreespeech). Login shell is bash. my .bash_profile gets executed on login, as well as with the git post receive hook – Derrick Jun 1 '11 at 1:43
add some 'ls -a' commands after the rm to see what files are sticking around. that might give you some clues. – Frosty Jun 21 '11 at 15:16
any file that is a directory stays around – Derrick Jun 23 '11 at 7:26
1  
No, need for pardon, I haven't done all these things from a non-interactive shell. I'll report back when I've checked these things out – Derrick Aug 13 '11 at 6:20
show 3 more comments
feedback

1 Answer

use

which rm

to get rm's path eg. /bin/rm

then replace it with /bin/rm to get another try. Sometimes, it is occurs by your shell script's start scripts.

link|improve this answer
Hi, thanks for your answer. Can you explain the reasoning behind this in more detail? My PATH works correctly, because the actual launching of executables work fine (e.g. jekyll, rm, etc). The thing is that rm seems to only be removing some files, but not all of them. It's as if the -rf options are not sticking, or the permissions are different. – Derrick Nov 3 '11 at 18:23
It depends on your shell. For example, if you use bash and the system have some default "alias". You could check alias rm. Does my solution work? – Daniel YC Lin Nov 4 '11 at 7:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.