Skip to content

Commit

Permalink
- fix plugin export on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Jan 27, 2025
1 parent 39f2d4e commit ca06fcb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion currentGitHash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ea13649c90872a62dbb1326d9f44727c125914d1
39f2d4e5464b56d5342fde77c5d6567d4b519373
7 changes: 2 additions & 5 deletions hi_backend/backend/CompileExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1190,11 +1190,8 @@ CompileExporter::ErrorCodes CompileExporter::compileSolution(BuildOption buildOp
}
#else

if(manager != nullptr)
{
String permissionCommand = "chmod +x \"" + batchFile.getFullPathName() + "\"";
system(permissionCommand.getCharPointer());
}
String permissionCommand = "chmod +x " + batchFile.getFullPathName().quoted();
system(permissionCommand.getCharPointer());

String command = manager != nullptr ? batchFile.getFullPathName() : ("open " + batchFile.getFullPathName().quoted());

Expand Down
2 changes: 1 addition & 1 deletion hi_backend/backend/currentGit.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define PREVIOUS_HISE_COMMIT "ea13649c90872a62dbb1326d9f44727c125914d1"
#define PREVIOUS_HISE_COMMIT "39f2d4e5464b56d5342fde77c5d6567d4b519373"

0 comments on commit ca06fcb

Please sign in to comment.