Skip to content

Commit

Permalink
v1.1.5: Fixed path bug in starter script, script was buggy, if starte…
Browse files Browse the repository at this point in the history
…d from scripts dir
  • Loading branch information
AdamZsofi committed Oct 15, 2020
1 parent 2a07df0 commit 3af6f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(NOT DEFINED GAZER_VERSION_MINOR)
set(GAZER_VERSION_MINOR 1)
endif()
if(NOT DEFINED GAZER_VERSION_PATCH)
set(GAZER_VERSION_PATCH 4)
set(GAZER_VERSION_PATCH 5)
endif()
if(NOT DEFINED GAZER_VERSION_SUFFIX)
set(GAZER_VERSION_SUFFIX "")
Expand Down
2 changes: 1 addition & 1 deletion scripts/gazer_starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# default values
output_path = os.getcwd()
tool_directory = os.path.abspath(
os.path.dirname(os.path.dirname(__file__)) + "/build/tools"
os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + "/build/tools"
) # /tools, if built like the Docker, /build/tools, if built in a build directory


Expand Down

0 comments on commit 3af6f53

Please sign in to comment.