I'm trying to write a simple ruby script to update my GIT working directories. The script is producing errors and I cannot figure out why. I have the following function ( I know that can be written more simply, but nothing i try seems to work)
def performCommandInDir(command, dir)
old_dir = Dir.pwd
Dir.chdir(dir)
system(command)
Dir.chdir(old_dir)
end
and I call it like so
performCommandInDir("git svn rebase", repo[:name])
When I run the script I see the following errors:
fatal: /usr/libexec/git-core/git-rebase cannot be used without a working tree.
rebase refs/remotes/git-svn: command returned error: 1
I have verified that repo[:name] is the correct path to my GIT repository. I can manually paste its value into a shell and the git commands work fine.
What could be going on here?
Thanks for the help