Update build package script for window

This commit is contained in:
Francesco Abbate 2021-05-06 09:36:39 +02:00
parent d9a7d9e5ae
commit f1621192f9
1 changed files with 3 additions and 3 deletions

View File

@ -50,16 +50,16 @@ lite_build_pgo () {
} }
lite_build_package_windows () { lite_build_package_windows () {
local portable="" local portable="-msys"
if [ "$1" == "-portable" ]; then if [ "$1" == "-portable" ]; then
portable="-portable" portable=""
shift shift
fi fi
local build="$1" local build="$1"
local arch="$2" local arch="$2"
local os="win" local os="win"
local pdir=".package-build/lite-xl" local pdir=".package-build/lite-xl"
if [ "$portable" == "-portable" ]; then if [ -z "$portable" ]; then
local bindir="$pdir" local bindir="$pdir"
local datadir="$pdir/data" local datadir="$pdir/data"
else else