Update build package script for window
This commit is contained in:
parent
d9a7d9e5ae
commit
f1621192f9
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue