Explorar el Código

small builder bug fix

tags/v0.0.6_dev
Niro hace 2 años
padre
commit
0ecdfbb21a
Se han modificado 1 ficheros con 7 adiciones y 2 borrados
  1. +7
    -2
      .build/make-exe.sh

+ 7
- 2
.build/make-exe.sh Ver fichero

@@ -4,7 +4,8 @@ doZip=true
path="./.build"

# Windows Folder
winPATH=$path"/builds/$1-win"
winDir=$1-win
winPATH=$path"/builds/$winDir"
mkdir "$winPATH"

# Creating .exe
@@ -16,7 +17,11 @@ cp $path"/win/"* "$winPATH"

# Zip it if $doZip == "true"
if [[ $doZip == "true" ]]; then
currentPath=$( pwd )
cd "$path/builds"
name=$1"-win.zip"
zip "$path/builds/$name" -r "$winPATH"
zip "$name" -r "$winDir"
cd "$currentPath"
rm -rf "$winPATH"
fi

Cargando…
Cancelar
Guardar