Skip to content

Commit

Permalink
Updating to new release 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbusb committed Nov 27, 2016
1 parent 95245ff commit 767bcc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build_pkg
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ class pkg():
os.mkdir(self.release_upload_dir)
if not os.path.exists(os.path.join(self.release_upload_dir, "Linux")):
os.mkdir(os.path.join(self.release_upload_dir, "Linux"))
elif not os.path.exists(os.path.join(self.release_upload_dir, "Windows")):
if not os.path.exists(os.path.join(self.release_upload_dir, "Windows")):
os.mkdir(os.path.join(self.release_upload_dir, "Windows"))
elif not os.path.exists(os.path.join(self.release_upload_dir, "Source")):
if not os.path.exists(os.path.join(self.release_upload_dir, "Source")):
os.mkdir(os.path.join(self.release_upload_dir, "Source"))
if self.pkg_name == "deb":
print("Ensure thta you have python-stdeb package installed!")
Expand Down
2 changes: 1 addition & 1 deletion data/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.1.0
8.2.0
4 changes: 2 additions & 2 deletions multibootusb.nsi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;--------------------------------
;NSIS script for creating multibootusb setup file

Name "multibootusb 8.1.0"
OutFile "multibootusb-8.1.0-setup.exe"
Name "multibootusb 8.2.0"
OutFile "multibootusb-8.2.0-setup.exe"

SetCompressor lzma

Expand Down

0 comments on commit 767bcc6

Please sign in to comment.