소스 검색

small builder bug fix

tags/v0.0.6_dev
Niro 2 년 전
부모
커밋
0ecdfbb21a
1개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. +7
    -2
      .build/make-exe.sh

+ 7
- 2
.build/make-exe.sh 파일 보기

@@ -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

불러오는 중...
취소
저장