Skip to content

Commit

Permalink
Added support for user-specified command-line parameters to .cmd files
Browse files Browse the repository at this point in the history
  • Loading branch information
eteeselink committed Feb 3, 2013
1 parent 01e0b59 commit f5e60ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion distrib/add-indexed-branch.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
@SET FOLDER=c:/gitblit/git
@SET EXCLUSIONS=--skip test.git --skip group/test*
@SET BRANCH=default
@java -cp gitblit.jar;"%CD%\ext\*" com.gitblit.AddIndexedBranch --repositoriesFolder %FOLDER% --branch %BRANCH% %EXCLUSIONS%
@java -cp gitblit.jar;"%CD%\ext\*" com.gitblit.AddIndexedBranch --repositoriesFolder %FOLDER% --branch %BRANCH% %EXCLUSIONS% %*
2 changes: 1 addition & 1 deletion distrib/authority.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@java -jar authority.jar --baseFolder data
@java -jar authority.jar --baseFolder data %*
2 changes: 1 addition & 1 deletion distrib/gitblit-stop.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@java -jar gitblit.jar --stop --baseFolder data
@java -jar gitblit.jar --stop --baseFolder data %*
2 changes: 1 addition & 1 deletion distrib/gitblit.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@java -jar gitblit.jar --baseFolder data
@java -jar gitblit.jar --baseFolder data %*

0 comments on commit f5e60ba

Please sign in to comment.