-
Go to Actions > Custom Actions > Edit > Add
-
Menu Caption
Update All Submodules
-
Check
Show Full Output
-
Script to run
/usr/bin/git
If installed in default location
-
Parameters
submodule update --recursive --remote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Mail" | |
set theFrom to "" | |
set theTos to {} | |
set theCcs to {} | |
set theBccs to {} | |
set theSubject to "" | |
set theContent to "" | |
set theSignature to "" |
With you get something like:
dyld: Library not loaded: @rpath/ffmpeg/lib/osx/libavutil.55.dylib Referenced from: /Users/studio/Work/Repositories/Cannula/HAPTest/bin/HAPTest.app/Contents/MacOS/HAPTest Reason: image not found
On Xcode > Build Settings > Other Linker Flags > Debug AND Release (not using AppStore), change:
@loader_path/../../../OFReleases/OF0101/addons/ofxHapPlayer/libs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TO DO | |
# https://superuser.com/questions/688024/how-can-i-determine-if-an-application-is-not-responding | |
# Check For Process With Schedule | |
# File > Export | |
# File format: Application | |
# Options: Stay open after run handler | |
# Notes | |
# Words like 'path' are reserved. |
GLFW error 65544: No monitor found.
Go to Device Manager > Monitors and check if the correct device is enabled and properly installed. Do Update Driver.
Create/Edit .gitattributes, and declare what to ignore, like so:
.make linguist-vendored
Reference/Credits to Monica Powell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Auto detect text files and perform LF normalization | |
* text=auto |
On the submodule repository:
git config receive.denyCurrentBranch updateInstead
NewerOlder