So I went through all the steps to make an svn repo.
1) I created the repo by calling
svnadmin create /path/to/repo
2) I added the folder that holds the files I want in my repo using
svn import /path/to/folder
3) I also made a post commit hook that calls svn update on that folder
4) And then on my remote system I was able to check it out all without any problems. Now the problem is that when I commit and check the log I see the line
Skipped '/path/to/folder'
Basically it keeps skipping the folder and won't apply the changes I commit to it. I checked the folder and see there's no .svn folder in there which repos usually have which I suspect is the issue...or not.
Anyone know what could be the issue? I want that folder to be update the files when I make commits