We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b886a1a commit fc52af9Copy full SHA for fc52af9
tools/mcmanifest.js
@@ -115,7 +115,10 @@ export class MakeFile extends FILE {
115
this.line("");
116
if (tool.bleServicesFiles.length) {
117
this.echo(tool, "bles2gatt bleservices");
118
- this.line(`\ttouch ${tool.moddablePath}/modules/network/ble/${tool.platform}/modBLEServer.c`);
+ if (tool.windows)
119
+ this.line(`\ttype nul >> ${tool.moddablePath}/modules/network/ble/${tool.platform}/modBLEServer.c`);
120
+ else
121
+ this.line(`\ttouch ${tool.moddablePath}/modules/network/ble/${tool.platform}/modBLEServer.c`);
122
}
123
this.write("\t$(BLES2GATT)");
124
if (tool.bleServicesFiles.length)
0 commit comments