Browse Source

Tweaks to windows build script

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 5 years ago
parent
commit
209eeadc8f
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 15 additions and 2 deletions
  1. +13
    -0
      data/windows/build-win-all.sh
  2. +2
    -2
      data/windows/pack-win.sh

+ 13
- 0
data/windows/build-win-all.sh View File

@@ -14,6 +14,19 @@ if [ ! -f Makefile ]; then
cd $(dirname $0)/../..
fi

# ---------------------------------------------------------------------------------------------------------------------
# cleanup

if [ ! -f Makefile ] || [ ! -f source/frontend/carla ]; then
echo "wrong dir"
exit 1
fi

rm -rf data/windows/*.exe
rm -rf data/windows/*.lv2
rm -rf data/windows/*.vst
rm -rf data/windows/*.zip

# ---------------------------------------------------------------------------------------------------------------------
# start



+ 2
- 2
data/windows/pack-win.sh View File

@@ -1,5 +1,7 @@
#!/bin/bash

VERSION="2.2.0-RC1"

# ---------------------------------------------------------------------------------------------------------------------
# check input

@@ -16,8 +18,6 @@ if [ x"${ARCH}" = x"32nosse" ]; then
MAKE_ARGS="NOOPT=true"
fi

VERSION="2.2-RC1"

# ---------------------------------------------------------------------------------------------------------------------
# stop on error



Loading…
Cancel
Save