Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error exporting rep checkout in script

Tags:

bash

macos

svn

I get this error when trying to export a rep checkout to a folder using a bash script:

svn: E125001: Couldn't determine absolute path of '.'
svn: E000002: No such file or directory

Performing the same export command in Terminal works.

like image 758
Jonny Avatar asked Aug 19 '26 14:08

Jonny


1 Answers

I found out the problem... the bash script used a loop to export and build trunk and tags from repositories. Long story short, in the script, I needed to cd into a valid working dir before doing a SVN export. The SVN client was updated yesterday after installing a new XCode (I think...) and I guess making sure there is valid working dir is a good thing.

like image 180
Jonny Avatar answered Aug 22 '26 04:08

Jonny