Skip to content

Commit

Permalink
Minor changes in build.bat script.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianst85 committed May 11, 2016
1 parent 6adc99b commit b0a5038
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.bat
Expand Up @@ -6,6 +6,12 @@ set SOURCE_PATH=%PROJECT_PATH%QuickConnectPlugin

cd /d "%PROJECT_PATH%"

IF NOT EXIST build (
mkdir build
)

xcopy /Y .\QuickConnectPlugin\bin\Debug\QuickConnectPlugin.* .\build\

echo Cleaning project directory...
IF EXIST .\QuickConnectPlugin\bin\ (
rmdir /S /Q .\QuickConnectPlugin\bin\
Expand All @@ -17,9 +23,6 @@ IF EXIST .\QuickConnectPlugin\obj\ (
echo Building PLGX file...
%KEEPASS_PATH% --plgx-prereq-net:3.5 --plgx-create "%SOURCE_PATH%"

IF NOT EXIST build (
mkdir build
)

echo Moving PLGX file to build directory...
move /Y QuickConnectPlugin.plgx .\build\
Expand Down

0 comments on commit b0a5038

Please sign in to comment.