Skip to content

Commit 836c7c8

Browse files
committed
package fixes
1 parent 445595e commit 836c7c8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/dev/create_package.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ echoDots(){
7878

7979
if [ "$platform" = "vs_min" ]; then
8080
platform="vs"
81-
min_package=true
81+
min_package=1
8282
libs_abi=_x64
83+
else
84+
min_package=0
8385
fi
8486

8587
if [ "$platform" != "msys2" ] && [ "$platform" != "linux" ] && [ "$platform" != "linux64" ] && [ "$platform" != "linuxarmv6l" ] && [ "$platform" != "linuxaarch64" ] && [ "$platform" != "linuxarmv7l" ] && [ "$platform" != "vs" ] && [ "$platform" != "osx" ] && [ "$platform" != "android" ] && [ "$platform" != "ios" ] && [ "$platform" != "macos" ]; then
@@ -355,7 +357,7 @@ function createPackage {
355357
scripts/msys2/download_libs.sh -a $libs_abi
356358
scripts/emscripten/download_libs.sh -n
357359
elif [ "$pkg_platform" = "vs" ]; then
358-
if [ $min_package == true ]; then
360+
if [ $min_package == 1 ]; then
359361
scripts/vs/download_latest_libs_x64.sh
360362
else
361363
scripts/vs/download_latest_libs.sh

0 commit comments

Comments
 (0)