Skip to content

Commit

Permalink
Azure pipelines test + fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alzy committed Dec 19, 2020
1 parent d9f877e commit f9b3944
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -273,4 +273,9 @@ endif()


# -- Fixes issue where plugin isn't copied to rundir plugins directory on local build --
install_obs_plugin_with_data(obs-midi data)
if(WIN32)
if (${isAzure})
else ()
install_obs_plugin_with_data(obs-midi data)
endif()
endif()
2 changes: 1 addition & 1 deletion src/obs-midi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ eventsPtr _eventsSystem;

bool obs_module_load(void)
{
blog(LOG_INFO, "MIDI LOADED :)");
blog(LOG_INFO, "MIDI LOADED! :)");

// Device Manager Setup
_deviceManager = DeviceManagerPtr(new DeviceManager());
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
#define VERSION_H

#define GIT_BRANCH "fixes"
#define GIT_COMMIT_HASH "3e9ad09"
#define GIT_COMMIT_HASH "d9f877e"

#endif

0 comments on commit f9b3944

Please sign in to comment.