I have the following bash script, which is run every 15 minutes by cron. The idea is that it will add any new files to the repo, then commit all changes:
#! /bin/sh
# Add any new files found in /wc
svn add /wc --force
# Commit all changes to repository
svn commit /wc -m "Auto commit"
The svn add command is throwing an error:
svn: '/' is not a working copy
What am I doing wrong?
Running svn add /wc --force from command line throws the same error.
/wcis a working copy. It is, isn't it?svn info /wcprint?