Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2017-01-29 00:45:07 +0300
committerJanek Bevendorff <janek@jbev.net>2017-01-29 00:45:07 +0300
commitc043be3aa44e22126a1c88d19da2ed8e008b4363 (patch)
tree86f4814ddcdf6d8e6d7ee80b53ba16dd0d526434 /release-tool
parentb7180893c6a1a36be71ff772ed44f49ed5221db0 (diff)
Copy windows binaries to release-bin directory
Diffstat (limited to 'release-tool')
-rwxr-xr-xrelease-tool10
1 files changed, 4 insertions, 6 deletions
diff --git a/release-tool b/release-tool
index ef842a66a..282b4db01 100755
--- a/release-tool
+++ b/release-tool
@@ -481,12 +481,11 @@ build() {
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_TESTS=Off -G"MSYS Makefiles" \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" $CMAKE_OPTIONS "$SRC_DIR"
- logInfo "Compiling sources..."
- make $MAKE_OPTIONS
+ logInfo "Compiling and packaging sources..."
+ make $MAKE_OPTIONS package
- logInfo "Bundling binary packages..."
- make package
- else
+ mv "./${APP_NAME}-${RELEASE_NAME}-"*.{exe,zip} ../bin-release
+ else
logInfo "Configuring build..."
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_TESTS=Off $CMAKE_OPTIONS \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" "$SRC_DIR"
@@ -497,7 +496,6 @@ build() {
logInfo "Installing to bin dir..."
make DESTDIR="${OUTPUT_DIR}/bin-release" install/strip
-
logInfo "Creating AppImage..."
${SRC_DIR}/AppImage-Recipe.sh "$APP_NAME" "$RELEASE_NAME"
fi