Skip to content

Commit

Permalink
Update build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom authored Feb 26, 2019
1 parent 3160590 commit 9749558
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,9 @@ def replace(file, searchExp, replaceExp):
print('Featching files {}...'.format(color_string(obj,'\033[96m',auto_color)))
shutil.copy2(obj, temp)

if not os.path.isdir('release'):
relase_folder = os.mkdir('release')
relase_folder = 'release'
if not os.path.isdir(relase_folder):
os.mkdir(relase_folder)

if public_version:
public_build = ' public'
Expand Down

0 comments on commit 9749558

Please sign in to comment.