diff options
Diffstat (limited to 'nightly')
-rwxr-xr-x | nightly/packevol | 14 | ||||
-rwxr-xr-x | nightly/packwin | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/nightly/packevol b/nightly/packevol new file mode 100755 index 000000000..1e0bc5d7d --- /dev/null +++ b/nightly/packevol @@ -0,0 +1,14 @@ +#!/bin/bash + +cd .. + +dir=`pwd` + +cd packaging/windows +./make-translations.sh +makensis -DDLLDIR=$dir/../libs/dll/ \ + -DPRODUCT_VERSION="nightly-$1" \ + -DEXESUFFIX=/src \ + -DUPX=true \ + evol.nsi + diff --git a/nightly/packwin b/nightly/packwin new file mode 100755 index 000000000..05e4eac14 --- /dev/null +++ b/nightly/packwin @@ -0,0 +1,14 @@ +#!/bin/bash + +cd .. + +dir=`pwd` + +cd packaging/windows +./make-translations.sh +makensis -DDLLDIR=$dir/../libs/dll/ \ + -DPRODUCT_VERSION="nightly-$1" \ + -DEXESUFFIX=/src \ + -DUPX=true \ + setup.nsi + |