People,
I’ve bumped into a small problem with using SVN to get my plugins.
The first plugin I get is active_scaffold.
I use this syntax:
svn propset svn:externals “active_scaffold
http://activescaffold.googlecode.com/svn/tags/active_scaffold” vendor/
plugins
svn update vendor/plugins
svn commit --message=“SVN’d in Active Scaffold”
svn stat
shows me this:
$ svn stat
X vendor/rails
X vendor/plugins/active_scaffold
Performing status on external item at ‘vendor/rails’
Performing status on external item at ‘vendor/plugins/active_scaffold’
which looks good.
The 2nd plugin I get is acts_as_authenticated.
I use this syntax:
svn propset svn:externals “acts_as_authenticated
http://svn.techno-weenie.net/projects/plugins/acts_as_authenticated”
vendor/plugins
svn update vendor/plugins
svn commit --message=“SVN’d in Acts As Authenticated [ AAA ]”
svn stat
shows me this:
$ svn stat
X vendor/rails
X vendor/plugins/acts_as_authenticated
? vendor/plugins/active_scaffold
Performing status on external item at ‘vendor/rails’
Performing status on external item at ‘vendor/plugins/
acts_as_authenticated’
This does not look good.
SVN has ‘forgotten’ my install of active_scaffold.
What is the proper way to use SVN to bring in multiple plugins?
-moi