Skip to content

Commit

Permalink
Fix for Permission denied error from Linux binary release
Browse files Browse the repository at this point in the history
  • Loading branch information
wxguy committed Feb 2, 2023
1 parent 2b855e8 commit 65aea85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ def create_makeself():
if os.path.exists(os.path.join(output_dir, "wrfplot")):
print("Creating Linux installer...")
shutil.copy("installer.sh", output_dir)
os.system("chmod +x " + os.path.join(output_dir, "installer.sh"))
print("Executing makeself command to create archive...")
execute_cmd(makeself + " " + os.path.join(output_dir) + " " + os.path.join(output_dir, "wrfplot-linux-64bit.run") + " wrfplot_Linux_Installer " + "./installer.sh")
if os.path.exists(os.path.join(output_dir, "wrfplot.run")):
Expand Down
2 changes: 1 addition & 1 deletion wrfplot/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Generated by wrfplot build file. Do not edit it manually...
__version__ = version = "0.8.0.post0+git.5ce15a27.dirty"
__version__ = version = "0.8.1.post0+git.2b855e8d.dirty"

0 comments on commit 65aea85

Please sign in to comment.