Search code examples
thingsboard

Building Thingsboard from source on Windows


I have a problem building Thingsboard from source on Windows:

[WARNING] npm WARN addRemoteGit Error: Command failed: git -c core.longpaths=true config --get remote.origin.url [WARNING] npm WARN addRemoteGit [WARNING] npm WARN addRemoteGit at ChildProcess.exithandler (child_process.js:206:12) [WARNING] npm WARN addRemoteGit at emitTwo (events.js:106:13) [WARNING] npm WARN addRemoteGit at ChildProcess.emit (events.js:191:7) [WARNING] npm WARN addRemoteGit at maybeClose (internal/child_process.js:877:16) [WARNING] npm WARN addRemoteGit at Socket. (internal/child_process.js:334:11) [WARNING] npm WARN addRemoteGit at emitOne (events.js:96:13) [WARNING] npm WARN addRemoteGit at Socket.emit (events.js:188:7) [WARNING] npm WARN addRemoteGit at Pipe._handle.close [as _onclose] (net.js:498:12)

Exactly compiling with maven and npm


Solution

  • In general it's to change the GitHub URL

    "angular-fullscreen": "git://github.com/fabiobiondi/angular-fullscreen.git#master",
    "mdPickers": "git://github.com/alenaksu/mdPickers.git#0.7.5" 
    

    to

    "angular-fullscreen": "https://github.com/fabiobiondi/angular-fullscreen.git#master",
    "mdPickers": "https://github.com/alenaksu/mdPickers#0.7.5"
    

    and

    "build": "SET NODE_ENV=production webpack -p"