lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 13 lines 332 B view raw
1dubBuildHook() { 2 runHook preBuild 3 echo "Executing dubBuildHook" 4 5 dub build --skip-registry=all --build="${dubBuildType-"release"}" "${dubBuildFlags[@]}" "${dubFlags[@]}" 6 7 echo "Finished dubBuildHook" 8 runHook postBuild 9} 10 11if [[ -z "${dontDubBuild-}" && -z "${buildPhase-}" ]]; then 12 buildPhase=dubBuildHook 13fi