File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -207,21 +207,23 @@ cd image-display-control/trunk/
207
207
208
208
### Commit to SVN
209
209
210
- Replace the ` trunk ` files with the previously built archive. This will require
211
- an unpredictable sequence of the following commands:
210
+ Replace the ` trunk ` files with the previously built archive:
212
211
213
- * ` unzip image-display-control.zip `
214
- * ` svn update `
215
- * ` svn add newfile1 newfile2 newdir1 `
216
- * ` svn delete oldfile1 `
217
- * ` svn status `
212
+ ``` bash
213
+ for i in $( find . -name " *" ) ; do svn delete $i ; done
214
+ rm -rf *
215
+ mv ../../image-display-control-wordpress/image-display-control.zip .
216
+ unzip image-display-control.zip
217
+ for i in $( find . -name " *" ) ; do svn add $i ; done
218
+ svn status
219
+ ```
218
220
219
221
Commit the ` trunk ` changes and create a new tag:
220
222
221
223
``` bash
222
224
cd ../
223
225
svn copy trunk tags/1.2.3
224
- svn commit -m " 1.2.3" --username my-wordpress-username --password foo
226
+ svn commit -m " 1.2.3" --username my-wordpress-username --password ' foo'
225
227
```
226
228
227
229
Check the result at https://wordpress.org/plugins/image-display-control/
You can’t perform that action at this time.
0 commit comments