Skip to content

Commit

Permalink
rename "dropin" dir to "dropins"
Browse files Browse the repository at this point in the history
  • Loading branch information
aledsage committed Apr 1, 2014
1 parent d629ee9 commit a78cad1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions usage/dist/src/main/config/build-distribution-archive.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
</includes>
</fileSet>
<fileSet>
<!-- Add an empty dropin folder (so need to reference an existing dir, and exclude everything) -->
<!-- Add an empty dropins folder (so need to reference an existing dir, and exclude everything) -->
<directory>${project.basedir}/src/main/dist/lib</directory>
<outputDirectory>/lib/dropin</outputDirectory>
<outputDirectory>/lib/dropins</outputDirectory>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
<excludes>
Expand Down
4 changes: 2 additions & 2 deletions usage/dist/src/main/config/build-distribution-dir.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
</includes>
</fileSet>
<fileSet>
<!-- Add an empty dropin folder (so need to reference an existing dir, and exclude everything) -->
<!-- Add an empty dropins folder (so need to reference an existing dir, and exclude everything) -->
<directory>${project.basedir}/src/main/dist/lib</directory>
<outputDirectory>/lib/dropin</outputDirectory>
<outputDirectory>/lib/dropins</outputDirectory>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
<excludes>
Expand Down
2 changes: 1 addition & 1 deletion usage/dist/src/main/dist/bin/brooklyn
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ -z "${JAVA_OPTS}" ] ; then
fi

# set up the classpath
INITIAL_CLASSPATH=${BROOKLYN_HOME}/conf:${BROOKLYN_HOME}/lib/patch/*:${BROOKLYN_HOME}/lib/brooklyn/*:${BROOKLYN_HOME}/lib/dropin/*
INITIAL_CLASSPATH=${BROOKLYN_HOME}/conf:${BROOKLYN_HOME}/lib/patch/*:${BROOKLYN_HOME}/lib/brooklyn/*:${BROOKLYN_HOME}/lib/dropins/*
# specify additional CP args in BROOKLYN_CLASSPATH
if [ ! -z "${BROOKLYN_CLASSPATH}" ]; then
INITIAL_CLASSPATH=${BROOKLYN_CLASSPATH}:${INITIAL_CLASSPATH}
Expand Down
4 changes: 2 additions & 2 deletions usage/dist/src/main/dist/bin/brooklyn.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ if ( Test-Path ${BROOKLYN_HOME}\patch ) {

$cp += Get-ChildItem ${BROOKLYN_HOME}\lib\brooklyn | Select-Object -ExpandProperty FullName

if ( Test-Path ${BROOKLYN_HOME}\dropin ) {
$cp += Get-ChildItem ${BROOKLYN_HOME}\dropin | Select-Object -ExpandProperty FullName
if ( Test-Path ${BROOKLYN_HOME}\dropins ) {
$cp += Get-ChildItem ${BROOKLYN_HOME}\dropins | Select-Object -ExpandProperty FullName
}

$INITIAL_CLASSPATH = $cp -join ';'
Expand Down

0 comments on commit a78cad1

Please sign in to comment.