PowerShell / Phosphor

A library and PowerShell module for generating user interfaces from PowerShell modules
Other
109 stars 24 forks source link

Running `Invoke-Build RunModule` fails on macOS #38

Open lidopaglia opened 7 years ago

lidopaglia commented 7 years ago

Following the build script instructions in the README.md on macOS 10.12.5 results in an error.

PowerShell version:

Name                      Value                                                                                                
----                      -----                                                                                                
PSVersion                 6.0.0-beta                                                                                           
PSEdition                 Core                                                                                                 
BuildVersion              3.0.0.0                                                                                              
CLRVersion                                                                                                                     
GitCommitId               v6.0.0-beta.1                                                                                        
OS                        Darwin 16.6.0 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RE...
Platform                  Unix                                                                                                 
PSCompatibleVersions      {1.0, 2.0, 3.0, 4.0...}                                                                              
PSRemotingProtocolVersion 2.3                                                                                                  
SerializationVersion      1.1.0.1                                                                                              
WSManStackVersion         3.0  

Error output:

PS /Users/lido/Code/Phosphor> Invoke-Build RunModule                                                                            
Build RunModule /Users/lido/Code/Phosphor/Phosphor.build.ps1
Task /RunModule/Build/BuildModule/SetupDotNet

### Installing .NET CLI 1.0.0...

dotnet-install: Downloading https://dotnetcli.azureedge.net/dotnet/Sdk/1.0.0/dotnet-dev-osx-x64.1.0.0.tar.gz                    dotnet-install: Extracting zip                                                                                                  dotnet-install: Adding to current process PATH: /Users/lido/Code/Phosphor/.dotnet. Note: This change will be visible only when sourcing script.                                                                                                                 
dotnet-install: Installation finished successfully.

### Installation complete.

### Using dotnet v1.0.0 at path /Users/lido/Code/Phosphor/.dotnet/dotnet

Done /RunModule/Build/BuildModule/SetupDotNet 00:00:49.1015430
Done /RunModule/Build/BuildModule/Restore/SetupDotNet
Task /RunModule/Build/BuildModule/Restore

Welcome to .NET Core!
---------------------
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.

Telemetry
--------------
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.

Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.
Decompressing 100% 4656 ms
Expanding 100% 8426 ms
  Restoring packages for /Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj...
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error : Unable to load the service index for source https://powershell.myget.org/F/powershell-core/api/v3/index.json. [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error :   The type initializer for 'System.Net.Http.CurlHandler' threw an exception. [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error :   The type initializer for 'Http' threw an exception. [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error :   The type initializer for 'HttpInitializer' threw an exception. [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error :   The type initializer for 'CryptoInitializer' threw an exception. [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error :   Unable to load DLL 'System.Security.Cryptography.Native.OpenSsl': The specified module could not be found. [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
/Users/lido/Code/Phosphor/.dotnet/sdk/1.0.0/NuGet.targets(97,5): error :    (Exception from HRESULT: 0x8007007E) [/Users/lido/Code/Phosphor/src/Phosphor/Phosphor.csproj]
At /Users/lido/Code/Phosphor/Phosphor.build.ps1:93 char:1
+ task Restore -If { "Restore" -in $BuildTask -or (NeedsRestore(".\src" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
At /Users/lido/Code/Phosphor/Phosphor.build.ps1:101 char:1
+ task BuildModule {
+ ~~~~~~~~~~~~~~~~~~
At /Users/lido/Code/Phosphor/Phosphor.build.ps1:120 char:1
+ task Build BuildModule, BuildClient
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
At /Users/lido/Code/Phosphor/Phosphor.build.ps1:144 char:1
+ task RunModule Build, {
+ ~~~~~~~~~~~~~~~~~~~~~~~
Build FAILED. 5 tasks, 1 errors, 0 warnings 00:01:15.1822530
exec : Command { & $script:dotnetExe restore .\src\Phosphor\Phosphor.csproj } exited with code 1.
At /Users/lido/Code/Phosphor/Phosphor.build.ps1:94 char:5
+     exec { & $script:dotnetExe restore .\src\Phosphor\Phosphor.csproj ...
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (:) [Invoke-BuildExec], Exception
    + FullyQualifiedErrorId : Invoke-BuildExec

I'm running PowerShell in ZSH 5.2 with oh-my-zsh installed.

lidopaglia commented 7 years ago

After installing dotnet core globally on macOS by following these instructions and running dotnet restore ./src/Phosphor I was able to progress a little further by running Invoke-Build RunModule again.

I already had OpenSSL installed but did follow the advice of symlinking the library files with:

ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/

My nodejs version is v7.10.0

The final error thrown by Show-Module states:

Unable to load DLL 'libuv': The specified module or one of its dependencies could not be found.

Also, after this my prompt was somehow overridden? until I typed exit.

PS /Users/lido/Code/Phosphor> Invoke-Build RunModule                                                                            
Build RunModule /Users/lido/Code/Phosphor/Phosphor.build.ps1
Task /RunModule/Build/BuildModule/SetupDotNet

### Using dotnet v1.0.0 at path /Users/lido/Code/Phosphor/.dotnet/dotnet

Done /RunModule/Build/BuildModule/SetupDotNet 00:00:00.1356500
Task /RunModule/Build/BuildModule/Restore skipped.
Task /RunModule/Build/BuildModule
Microsoft (R) Build Engine version 15.1.548.43366
Copyright (C) Microsoft Corporation. All rights reserved.

  Phosphor -> /Users/lido/Code/Phosphor/src/Phosphor/bin/Debug/netstandard1.6/Phosphor.dll
Done /RunModule/Build/BuildModule 00:00:05.9874660
Task /RunModule/Build/BuildClient
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead

> fsevents@1.1.1 install /Users/lido/Code/Phosphor/src/Phosphor.Client/node_modules/fsevents
> node install

[fsevents] Success: "/Users/lido/Code/Phosphor/src/Phosphor.Client/node_modules/fsevents/lib/binding/Release/node-v51-darwin-x64/fse.node" is installed via remote

> electron@1.6.10 postinstall /Users/lido/Code/Phosphor/src/Phosphor.Client/node_modules/electron
> node install.js

> phosphor-client@0.1.0 postinstall /Users/lido/Code/Phosphor/src/Phosphor.Client
> typings install

typings WARN deprecated 11/21/2016: "registry:dt/node#4.0.0+20160509154515" is deprecated (updated, replaced or removed)
typings WARN deprecated 9/14/2016: "registry:dt/core-js#0.0.0+20160317120654" is deprecated (updated, replaced or removed)
typings WARN deprecated 10/25/2016: "registry:dt/jasmine#2.2.0+20160505161446" is deprecated (updated, replaced or removed)

├── core-js (global)
├── jasmine (global)
└── node (global)

phosphor-client@0.1.0 /Users/lido/Code/Phosphor/src/Phosphor.Client
├── @angular/common@2.0.0-rc.1 
├── @angular/compiler@2.0.0-rc.1 
├── @angular/core@2.0.0-rc.1 
├── @angular/http@2.0.0-rc.1 
├── @angular/platform-browser@2.0.0-rc.1 
├── @angular/platform-browser-dynamic@2.0.0-rc.1 
├── @angular/router@2.0.0-rc.1 
├── @angular/router-deprecated@2.0.0-rc.1 
├── @angular/upgrade@2.0.0-rc.1 
├── angular2-in-memory-web-api@0.0.11 
├── bootstrap@3.3.7 
├─┬ concurrently@2.2.0 
│ ├── bluebird@2.9.6 
│ ├─┬ chalk@0.5.1 
│ │ ├── ansi-styles@1.1.0 
│ │ ├── escape-string-regexp@1.0.5 
│ │ ├─┬ has-ansi@0.1.0 
│ │ │ └── ansi-regex@0.2.1 
│ │ ├── strip-ansi@0.3.0 
│ │ └── supports-color@0.2.0 
│ ├── commander@2.6.0 
│ ├─┬ cross-spawn@0.2.9 
│ │ └── lru-cache@2.7.3 
│ ├── lodash@4.17.4 
│ ├── moment@2.18.1 
│ └── rx@2.3.24 
├── core-js@2.4.1 
├─┬ electron@1.6.10 
│ ├── @types/node@7.0.22 
│ ├─┬ electron-download@3.3.0 
│ │ ├─┬ debug@2.6.8 
│ │ │ └── ms@2.0.0 
│ │ ├─┬ fs-extra@0.30.0 
│ │ │ ├── jsonfile@2.4.0 
│ │ │ ├── klaw@1.3.1 
│ │ │ └── path-is-absolute@1.0.1 
│ │ ├── home-path@1.0.5 
│ │ ├─┬ nugget@2.0.1 
│ │ │ ├─┬ pretty-bytes@1.0.4 
│ │ │ │ ├── get-stdin@4.0.1 
│ │ │ │ └─┬ meow@3.7.0 
│ │ │ │   ├── camelcase-keys@2.1.0 
│ │ │ │   ├─┬ loud-rejection@1.6.0 
│ │ │ │   │ ├─┬ currently-unhandled@0.4.1 
│ │ │ │   │ │ └── array-find-index@1.0.2 
│ │ │ │   │ └── signal-exit@3.0.2 
│ │ │ │   ├── map-obj@1.0.1 
│ │ │ │   ├─┬ normalize-package-data@2.3.8 
│ │ │ │   │ ├── hosted-git-info@2.4.2 
│ │ │ │   │ ├─┬ is-builtin-module@1.0.0 
│ │ │ │   │ │ └── builtin-modules@1.1.1 
│ │ │ │   │ └─┬ validate-npm-package-license@3.0.1 
│ │ │ │   │   ├─┬ spdx-correct@1.0.2 
│ │ │ │   │   │ └── spdx-license-ids@1.2.2 
│ │ │ │   │   └── spdx-expression-parse@1.0.4 
│ │ │ │   ├─┬ redent@1.0.0 
│ │ │ │   │ ├── indent-string@2.1.0 
│ │ │ │   │ └── strip-indent@1.0.1 
│ │ │ │   └── trim-newlines@1.0.0 
│ │ │ ├─┬ progress-stream@1.2.0 
│ │ │ │ ├── speedometer@0.1.4 
│ │ │ │ └─┬ through2@0.2.3 
│ │ │ │   ├─┬ readable-stream@1.1.14 
│ │ │ │   │ └── string_decoder@0.10.31 
│ │ │ │   └─┬ xtend@2.1.2 
│ │ │ │     └── object-keys@0.4.0 
│ │ │ ├─┬ request@2.81.0 
│ │ │ │ ├── aws-sign2@0.6.0 
│ │ │ │ ├── aws4@1.6.0 
│ │ │ │ ├── caseless@0.12.0 
│ │ │ │ ├─┬ combined-stream@1.0.5 
│ │ │ │ │ └── delayed-stream@1.0.0 
│ │ │ │ ├── extend@3.0.1 
│ │ │ │ ├── forever-agent@0.6.1 
│ │ │ │ ├─┬ har-validator@4.2.1 
│ │ │ │ │ ├─┬ ajv@4.11.8 
│ │ │ │ │ │ ├── co@4.6.0 
│ │ │ │ │ │ └─┬ json-stable-stringify@1.0.1 
│ │ │ │ │ │   └── jsonify@0.0.0 
│ │ │ │ │ └── har-schema@1.0.5 
│ │ │ │ ├─┬ hawk@3.1.3 
│ │ │ │ │ ├── boom@2.10.1 
│ │ │ │ │ ├── cryptiles@2.0.5 
│ │ │ │ │ ├── hoek@2.16.3 
│ │ │ │ │ └── sntp@1.0.9 
│ │ │ │ ├─┬ http-signature@1.1.1 
│ │ │ │ │ ├── assert-plus@0.2.0 
│ │ │ │ │ ├─┬ jsprim@1.4.0 
│ │ │ │ │ │ ├── assert-plus@1.0.0 
│ │ │ │ │ │ ├── extsprintf@1.0.2 
│ │ │ │ │ │ ├── json-schema@0.2.3 
│ │ │ │ │ │ └── verror@1.3.6 
│ │ │ │ │ └─┬ sshpk@1.13.0 
│ │ │ │ │   ├── asn1@0.2.3 
│ │ │ │ │   ├── assert-plus@1.0.0 
│ │ │ │ │   ├── bcrypt-pbkdf@1.0.1 
│ │ │ │ │   ├─┬ dashdash@1.14.1 
│ │ │ │ │   │ └── assert-plus@1.0.0 
│ │ │ │ │   ├── ecc-jsbn@0.1.1 
│ │ │ │ │   ├─┬ getpass@0.1.7 
│ │ │ │ │   │ └── assert-plus@1.0.0 
│ │ │ │ │   ├── jodid25519@1.0.2 
│ │ │ │ │   ├── jsbn@0.1.1 
│ │ │ │ │   └── tweetnacl@0.14.5 
│ │ │ │ ├── is-typedarray@1.0.0 
│ │ │ │ ├── isstream@0.1.2 
│ │ │ │ ├── json-stringify-safe@5.0.1 
│ │ │ │ ├── oauth-sign@0.8.2 
│ │ │ │ ├── performance-now@0.2.0 
│ │ │ │ ├── qs@6.4.0 
│ │ │ │ ├── safe-buffer@5.0.1 
│ │ │ │ ├── stringstream@0.0.5 
│ │ │ │ ├── tunnel-agent@0.6.0 
│ │ │ │ └── uuid@3.0.1 
│ │ │ ├── single-line-log@1.1.2 
│ │ │ └── throttleit@0.0.2 
│ │ ├─┬ path-exists@2.1.0 
│ │ │ └─┬ pinkie-promise@2.0.1 
│ │ │   └── pinkie@2.0.4 
│ │ ├─┬ rc@1.2.1 
│ │ │ ├── deep-extend@0.4.2 
│ │ │ ├── ini@1.3.4 
│ │ │ └── strip-json-comments@2.0.1 
│ │ ├── semver@5.3.0 
│ │ └─┬ sumchecker@1.3.1 
│ │   └── es6-promise@4.1.0 
│ └─┬ extract-zip@1.6.5 
│   ├─┬ concat-stream@1.6.0 
│   │ ├── inherits@2.0.3 
│   │ ├─┬ readable-stream@2.2.9 
│   │ │ ├── buffer-shims@1.0.0 
│   │ │ ├── core-util-is@1.0.2 
│   │ │ ├── isarray@1.0.0 
│   │ │ ├── process-nextick-args@1.0.7 
│   │ │ ├── string_decoder@1.0.1 
│   │ │ └── util-deprecate@1.0.2 
│   │ └── typedarray@0.0.6 
│   ├─┬ debug@2.2.0 
│   │ └── ms@0.7.1 
│   ├─┬ mkdirp@0.5.0 
│   │ └── minimist@0.0.8 
│   └─┬ yauzl@2.4.1 
│     └─┬ fd-slicer@1.0.1 
│       └── pend@1.2.0 
├─┬ lite-server@2.3.0 
│ ├─┬ browser-sync@2.18.12 
│ │ ├─┬ browser-sync-client@2.5.1 
│ │ │ ├── etag@1.8.0 
│ │ │ └── fresh@0.3.0 
│ │ ├─┬ browser-sync-ui@0.6.3 
│ │ │ ├── async-each-series@0.1.1 
│ │ │ ├─┬ stream-throttle@0.1.3 
│ │ │ │ └── limiter@1.1.0 
│ │ │ └─┬ weinre@2.0.0-pre-I0Z7U9OV 
│ │ │   ├─┬ express@2.5.11 
│ │ │   │ ├─┬ connect@1.9.2 
│ │ │   │ │ └── formidable@1.0.17 
│ │ │   │ ├── mime@1.2.4 
│ │ │   │ ├── mkdirp@0.3.0 
│ │ │   │ └── qs@0.4.2 
│ │ │   ├── nopt@3.0.6 
│ │ │   └── underscore@1.7.0 
│ │ ├── bs-recipes@1.3.4 
│ │ ├─┬ chokidar@1.7.0 
│ │ │ ├── anymatch@1.3.0 
│ │ │ ├── async-each@1.0.1 
│ │ │ ├─┬ fsevents@1.1.1 
│ │ │ │ ├── nan@2.6.2 
│ │ │ │ └─┬ node-pre-gyp@0.6.33 
│ │ │ │   ├─┬ mkdirp@0.5.1 
│ │ │ │   │ └── minimist@0.0.8 
│ │ │ │   ├─┬ nopt@3.0.6 
│ │ │ │   │ └── abbrev@1.1.0 
│ │ │ │   ├─┬ npmlog@4.0.2 
│ │ │ │   │ ├─┬ are-we-there-yet@1.1.2 
│ │ │ │   │ │ ├── delegates@1.0.0 
│ │ │ │   │ │ └── readable-stream@2.2.2 
│ │ │ │   │ ├── console-control-strings@1.1.0 
│ │ │ │   │ ├─┬ gauge@2.7.3 
│ │ │ │   │ │ ├── aproba@1.1.1 
│ │ │ │   │ │ ├── has-unicode@2.0.1 
│ │ │ │   │ │ ├── object-assign@4.1.1 
│ │ │ │   │ │ ├── signal-exit@3.0.2 
│ │ │ │   │ │ ├─┬ string-width@1.0.2 
│ │ │ │   │ │ │ ├── code-point-at@1.1.0 
│ │ │ │   │ │ │ └─┬ is-fullwidth-code-point@1.0.0 
│ │ │ │   │ │ │   └── number-is-nan@1.0.1 
│ │ │ │   │ │ ├─┬ strip-ansi@3.0.1 
│ │ │ │   │ │ │ └── ansi-regex@2.1.1 
│ │ │ │   │ │ └── wide-align@1.1.0 
│ │ │ │   │ └── set-blocking@2.0.0 
│ │ │ │   ├─┬ rc@1.1.7 
│ │ │ │   │ ├── deep-extend@0.4.1 
│ │ │ │   │ ├── ini@1.3.4 
│ │ │ │   │ ├── minimist@1.2.0 
│ │ │ │   │ └── strip-json-comments@2.0.1 
│ │ │ │   ├─┬ request@2.79.0 
│ │ │ │   │ ├── aws-sign2@0.6.0 
│ │ │ │   │ ├── aws4@1.6.0 
│ │ │ │   │ ├── caseless@0.11.0 
│ │ │ │   │ ├─┬ combined-stream@1.0.5 
│ │ │ │   │ │ └── delayed-stream@1.0.0 
│ │ │ │   │ ├── extend@3.0.0 
│ │ │ │   │ ├── forever-agent@0.6.1 
│ │ │ │   │ ├─┬ form-data@2.1.2 
│ │ │ │   │ │ └── asynckit@0.4.0 
│ │ │ │   │ ├─┬ har-validator@2.0.6 
│ │ │ │   │ │ ├─┬ chalk@1.1.3 
│ │ │ │   │ │ │ ├── ansi-styles@2.2.1 
│ │ │ │   │ │ │ ├── escape-string-regexp@1.0.5 
│ │ │ │   │ │ │ ├── has-ansi@2.0.0 
│ │ │ │   │ │ │ └── supports-color@2.0.0 
│ │ │ │   │ │ ├─┬ commander@2.9.0 
│ │ │ │   │ │ │ └── graceful-readlink@1.0.1 
│ │ │ │   │ │ ├─┬ is-my-json-valid@2.15.0 
│ │ │ │   │ │ │ ├── generate-function@2.0.0 
│ │ │ │   │ │ │ ├─┬ generate-object-property@1.2.0 
│ │ │ │   │ │ │ │ └── is-property@1.0.2 
│ │ │ │   │ │ │ ├── jsonpointer@4.0.1 
│ │ │ │   │ │ │ └── xtend@4.0.1 
│ │ │ │   │ │ └─┬ pinkie-promise@2.0.1 
│ │ │ │   │ │   └── pinkie@2.0.4 
│ │ │ │   │ ├─┬ hawk@3.1.3 
│ │ │ │   │ │ ├── boom@2.10.1 
│ │ │ │   │ │ ├── cryptiles@2.0.5 
│ │ │ │   │ │ ├── hoek@2.16.3 
│ │ │ │   │ │ └── sntp@1.0.9 
│ │ │ │   │ ├─┬ http-signature@1.1.1 
│ │ │ │   │ │ ├── assert-plus@0.2.0 
│ │ │ │   │ │ ├─┬ jsprim@1.3.1 
│ │ │ │   │ │ │ ├── extsprintf@1.0.2 
│ │ │ │   │ │ │ ├── json-schema@0.2.3 
│ │ │ │   │ │ │ └── verror@1.3.6 
│ │ │ │   │ │ └─┬ sshpk@1.10.2 
│ │ │ │   │ │   ├── asn1@0.2.3 
│ │ │ │   │ │   ├── assert-plus@1.0.0 
│ │ │ │   │ │   ├── bcrypt-pbkdf@1.0.1 
│ │ │ │   │ │   ├─┬ dashdash@1.14.1 
│ │ │ │   │ │   │ └── assert-plus@1.0.0 
│ │ │ │   │ │   ├── ecc-jsbn@0.1.1 
│ │ │ │   │ │   ├─┬ getpass@0.1.6 
│ │ │ │   │ │   │ └── assert-plus@1.0.0 
│ │ │ │   │ │   ├── jodid25519@1.0.2 
│ │ │ │   │ │   ├── jsbn@0.1.1 
│ │ │ │   │ │   └── tweetnacl@0.14.5 
│ │ │ │   │ ├── is-typedarray@1.0.0 
│ │ │ │   │ ├── isstream@0.1.2 
│ │ │ │   │ ├── json-stringify-safe@5.0.1 
│ │ │ │   │ ├─┬ mime-types@2.1.14 
│ │ │ │   │ │ └── mime-db@1.26.0 
│ │ │ │   │ ├── oauth-sign@0.8.2 
│ │ │ │   │ ├── qs@6.3.1 
│ │ │ │   │ ├── stringstream@0.0.5 
│ │ │ │   │ ├─┬ tough-cookie@2.3.2 
│ │ │ │   │ │ └── punycode@1.4.1 
│ │ │ │   │ ├── tunnel-agent@0.4.3 
│ │ │ │   │ └── uuid@3.0.1 
│ │ │ │   ├─┬ rimraf@2.5.4 
│ │ │ │   │ └─┬ glob@7.1.1 
│ │ │ │   │   ├── fs.realpath@1.0.0 
│ │ │ │   │   ├── inflight@1.0.6 
│ │ │ │   │   ├─┬ minimatch@3.0.3 
│ │ │ │   │   │ └─┬ brace-expansion@1.1.6 
│ │ │ │   │   │   ├── balanced-match@0.4.2 
│ │ │ │   │   │   └── concat-map@0.0.1 
│ │ │ │   │   ├── once@1.4.0 
│ │ │ │   │   └── path-is-absolute@1.0.1 
│ │ │ │   ├── semver@5.3.0 
│ │ │ │   ├─┬ tar@2.2.1 
│ │ │ │   │ ├── block-stream@0.0.9 
│ │ │ │   │ ├─┬ fstream@1.0.10 
│ │ │ │   │ │ └── graceful-fs@4.1.11 
│ │ │ │   │ └── inherits@2.0.3 
│ │ │ │   └─┬ tar-pack@3.3.0 
│ │ │ │     ├─┬ debug@2.2.0 
│ │ │ │     │ └── ms@0.7.1 
│ │ │ │     ├── fstream-ignore@1.0.5 
│ │ │ │     ├─┬ once@1.3.3 
│ │ │ │     │ └── wrappy@1.0.2 
│ │ │ │     ├─┬ readable-stream@2.1.5 
│ │ │ │     │ ├── buffer-shims@1.0.0 
│ │ │ │     │ ├── core-util-is@1.0.2 
│ │ │ │     │ ├── isarray@1.0.0 
│ │ │ │     │ ├── process-nextick-args@1.0.7 
│ │ │ │     │ ├── string_decoder@0.10.31 
│ │ │ │     │ └── util-deprecate@1.0.2 
│ │ │ │     └── uid-number@0.0.6 
│ │ │ ├── glob-parent@2.0.0 
│ │ │ ├─┬ is-binary-path@1.0.1 
│ │ │ │ └── binary-extensions@1.8.0 
│ │ │ ├── is-glob@2.0.1 
│ │ │ └─┬ readdirp@2.1.0 
│ │ │   ├─┬ readable-stream@2.2.9 
│ │ │   │ ├── isarray@1.0.0 
│ │ │   │ └── string_decoder@1.0.1 
│ │ │   └── set-immediate-shim@1.0.1 
│ │ ├─┬ connect@3.5.0 
│ │ │ ├─┬ debug@2.2.0 
│ │ │ │ └── ms@0.7.1 
│ │ │ ├─┬ finalhandler@0.5.0 
│ │ │ │ ├─┬ debug@2.2.0 
│ │ │ │ │ └── ms@0.7.1 
│ │ │ │ ├─┬ on-finished@2.3.0 
│ │ │ │ │ └── ee-first@1.1.1 
│ │ │ │ ├── statuses@1.3.1 
│ │ │ │ └── unpipe@1.0.0 
│ │ │ ├── parseurl@1.3.1 
│ │ │ └── utils-merge@1.0.0 
│ │ ├── dev-ip@1.0.1 
│ │ ├─┬ easy-extender@2.3.2 
│ │ │ └── lodash@3.10.1 
│ │ ├─┬ eazy-logger@3.0.2 
│ │ │ └─┬ tfunk@3.1.0 
│ │ │   ├─┬ chalk@1.1.3 
│ │ │   │ ├── ansi-styles@2.2.1 
│ │ │   │ ├─┬ has-ansi@2.0.0 
│ │ │   │ │ └── ansi-regex@2.1.1 
│ │ │   │ ├── strip-ansi@3.0.1 
│ │ │   │ └── supports-color@2.0.0 
│ │ │   └── object-path@0.9.2 
│ │ ├── emitter-steward@1.0.0 
│ │ ├─┬ fs-extra@3.0.1 
│ │ │ ├── jsonfile@3.0.0 
│ │ │ └── universalify@0.1.0 
│ │ ├─┬ http-proxy@1.15.2 
│ │ │ ├── eventemitter3@1.2.0 
│ │ │ └── requires-port@1.0.0 
│ │ ├── immutable@3.8.1 
│ │ ├─┬ localtunnel@1.8.2 
│ │ │ ├─┬ debug@2.2.0 
│ │ │ │ └── ms@0.7.1 
│ │ │ ├── openurl@1.1.0 
│ │ │ ├─┬ request@2.78.0 
│ │ │ │ ├── caseless@0.11.0 
│ │ │ │ ├─┬ har-validator@2.0.6 
│ │ │ │ │ ├─┬ chalk@1.1.3 
│ │ │ │ │ │ ├── ansi-styles@2.2.1 
│ │ │ │ │ │ ├─┬ has-ansi@2.0.0 
│ │ │ │ │ │ │ └── ansi-regex@2.1.1 
│ │ │ │ │ │ ├── strip-ansi@3.0.1 
│ │ │ │ │ │ └── supports-color@2.0.0 
│ │ │ │ │ ├─┬ commander@2.9.0 
│ │ │ │ │ │ └── graceful-readlink@1.0.1 
│ │ │ │ │ └─┬ is-my-json-valid@2.16.0 
│ │ │ │ │   ├── generate-function@2.0.0 
│ │ │ │ │   ├─┬ generate-object-property@1.2.0 
│ │ │ │ │   │ └── is-property@1.0.2 
│ │ │ │ │   ├── jsonpointer@4.0.1 
│ │ │ │ │   └── xtend@4.0.1 
│ │ │ │ ├── node-uuid@1.4.8 
│ │ │ │ ├── qs@6.3.2 
│ │ │ │ └── tunnel-agent@0.4.3 
│ │ │ └─┬ yargs@3.29.0 
│ │ │   ├── camelcase@1.2.1 
│ │ │   └── window-size@0.1.4 
│ │ ├─┬ micromatch@2.3.11 
│ │ │ ├─┬ arr-diff@2.0.0 
│ │ │ │ └── arr-flatten@1.0.3 
│ │ │ ├── array-unique@0.2.1 
│ │ │ ├─┬ braces@1.8.5 
│ │ │ │ ├─┬ expand-range@1.8.2 
│ │ │ │ │ └─┬ fill-range@2.2.3 
│ │ │ │ │   ├── is-number@2.1.0 
│ │ │ │ │   ├── randomatic@1.1.6 
│ │ │ │ │   └── repeat-string@1.6.1 
│ │ │ │ ├── preserve@0.2.0 
│ │ │ │ └── repeat-element@1.1.2 
│ │ │ ├─┬ expand-brackets@0.1.5 
│ │ │ │ └── is-posix-bracket@0.1.1 
│ │ │ ├── extglob@0.3.2 
│ │ │ ├── filename-regex@2.0.1 
│ │ │ ├── is-extglob@1.0.0 
│ │ │ ├─┬ kind-of@3.2.2 
│ │ │ │ └── is-buffer@1.1.5 
│ │ │ ├─┬ normalize-path@2.1.1 
│ │ │ │ └── remove-trailing-separator@1.0.1 
│ │ │ ├─┬ object.omit@2.0.1 
│ │ │ │ ├─┬ for-own@0.1.5 
│ │ │ │ │ └── for-in@1.0.2 
│ │ │ │ └── is-extendable@0.1.1 
│ │ │ ├─┬ parse-glob@3.0.4 
│ │ │ │ ├── glob-base@0.3.0 
│ │ │ │ └── is-dotfile@1.0.2 
│ │ │ └─┬ regex-cache@0.4.3 
│ │ │   ├── is-equal-shallow@0.1.3 
│ │ │   └── is-primitive@2.0.0 
│ │ ├─┬ opn@4.0.2 
│ │ │ └── object-assign@4.1.1 
│ │ ├─┬ portscanner@2.1.1 
│ │ │ ├── async@1.5.2 
│ │ │ └─┬ is-number-like@1.0.7 
│ │ │   ├─┬ bubleify@0.5.1 
│ │ │   │ └─┬ buble@0.12.5 
│ │ │   │   ├── acorn@3.3.0 
│ │ │   │   ├── acorn-jsx@3.0.1 
│ │ │   │   ├── acorn-object-spread@1.0.0 
│ │ │   │   ├─┬ chalk@1.1.3 
│ │ │   │   │ ├── ansi-styles@2.2.1 
│ │ │   │   │ ├─┬ has-ansi@2.0.0 
│ │ │   │   │ │ └── ansi-regex@2.1.1 
│ │ │   │   │ ├── strip-ansi@3.0.1 
│ │ │   │   │ └── supports-color@2.0.0 
│ │ │   │   └─┬ magic-string@0.14.0 
│ │ │   │     └── vlq@0.2.2 
│ │ │   └── lodash.isfinite@3.3.2 
│ │ ├── qs@6.2.1 
│ │ ├─┬ resp-modifier@6.0.2 
│ │ │ └─┬ minimatch@3.0.4 
│ │ │   └─┬ brace-expansion@1.1.7 
│ │ │     ├── balanced-match@0.4.2 
│ │ │     └── concat-map@0.0.1 
│ │ ├── rx@4.1.0 
│ │ ├─┬ serve-index@1.8.0 
│ │ │ ├─┬ accepts@1.3.3 
│ │ │ │ └── negotiator@0.6.1 
│ │ │ ├── batch@0.5.3 
│ │ │ ├─┬ debug@2.2.0 
│ │ │ │ └── ms@0.7.1 
│ │ │ ├── escape-html@1.0.3 
│ │ │ ├─┬ http-errors@1.5.1 
│ │ │ │ └── setprototypeof@1.0.2 
│ │ │ └─┬ mime-types@2.1.15 
│ │ │   └── mime-db@1.27.0 
│ │ ├─┬ serve-static@1.12.2 
│ │ │ ├── encodeurl@1.0.1 
│ │ │ └─┬ send@0.15.2 
│ │ │   ├─┬ debug@2.6.4 
│ │ │   │ └── ms@0.7.3 
│ │ │   ├── depd@1.1.0 
│ │ │   ├── destroy@1.0.4 
│ │ │   ├── fresh@0.5.0 
│ │ │   ├─┬ http-errors@1.6.1 
│ │ │   │ └── setprototypeof@1.0.3 
│ │ │   ├── mime@1.3.4 
│ │ │   ├── ms@1.0.0 
│ │ │   └── range-parser@1.2.0 
│ │ ├── server-destroy@1.0.1 
│ │ ├─┬ socket.io@1.6.0 
│ │ │ ├─┬ debug@2.3.3 
│ │ │ │ └── ms@0.7.2 
│ │ │ ├─┬ engine.io@1.8.0 
│ │ │ │ ├── base64id@0.1.0 
│ │ │ │ ├── cookie@0.3.1 
│ │ │ │ ├─┬ debug@2.3.3 
│ │ │ │ │ └── ms@0.7.2 
│ │ │ │ ├─┬ engine.io-parser@1.3.1 
│ │ │ │ │ ├── after@0.8.1 
│ │ │ │ │ ├── arraybuffer.slice@0.0.6 
│ │ │ │ │ ├── base64-arraybuffer@0.1.5 
│ │ │ │ │ ├── blob@0.0.4 
│ │ │ │ │ ├── has-binary@0.1.6 
│ │ │ │ │ └── wtf-8@1.0.0 
│ │ │ │ └─┬ ws@1.1.1 
│ │ │ │   ├── options@0.0.6 
│ │ │ │   └── ultron@1.0.2 
│ │ │ ├─┬ has-binary@0.1.7 
│ │ │ │ └── isarray@0.0.1 
│ │ │ ├── object-assign@4.1.0 
│ │ │ ├─┬ socket.io-adapter@0.5.0 
│ │ │ │ └─┬ debug@2.3.3 
│ │ │ │   └── ms@0.7.2 
│ │ │ └─┬ socket.io-parser@2.3.1 
│ │ │   ├── component-emitter@1.1.2 
│ │ │   ├─┬ debug@2.2.0 
│ │ │   │ └── ms@0.7.1 
│ │ │   └── json3@3.3.2 
│ │ ├─┬ socket.io-client@1.6.0 
│ │ │ ├── backo2@1.0.2 
│ │ │ ├── component-bind@1.0.0 
│ │ │ ├── component-emitter@1.2.1 
│ │ │ ├─┬ debug@2.3.3 
│ │ │ │ └── ms@0.7.2 
│ │ │ ├─┬ engine.io-client@1.8.0 
│ │ │ │ ├── component-emitter@1.2.1 
│ │ │ │ ├── component-inherit@0.0.3 
│ │ │ │ ├─┬ debug@2.3.3 
│ │ │ │ │ └── ms@0.7.2 
│ │ │ │ ├── has-cors@1.1.0 
│ │ │ │ ├── parsejson@0.0.3 
│ │ │ │ ├── parseqs@0.0.5 
│ │ │ │ ├── xmlhttprequest-ssl@1.5.3 
│ │ │ │ └── yeast@0.1.2 
│ │ │ ├── indexof@0.0.1 
│ │ │ ├── object-component@0.0.3 
│ │ │ ├─┬ parseuri@0.0.5 
│ │ │ │ └─┬ better-assert@1.0.2 
│ │ │ │   └── callsite@1.0.0 
│ │ │ └── to-array@0.1.4 
│ │ ├── ua-parser-js@0.7.12 
│ │ └─┬ yargs@6.4.0 
│ │   ├── camelcase@3.0.0 
│ │   ├─┬ cliui@3.2.0 
│ │   │ ├─┬ strip-ansi@3.0.1 
│ │   │ │ └── ansi-regex@2.1.1 
│ │   │ └─┬ wrap-ansi@2.1.0 
│ │   │   └─┬ strip-ansi@3.0.1 
│ │   │     └── ansi-regex@2.1.1 
│ │   ├── decamelize@1.2.0 
│ │   ├── get-caller-file@1.0.2 
│ │   ├─┬ os-locale@1.4.0 
│ │   │ └─┬ lcid@1.0.0 
│ │   │   └── invert-kv@1.0.0 
│ │   ├─┬ read-pkg-up@1.0.1 
│ │   │ ├── find-up@1.1.2 
│ │   │ └─┬ read-pkg@1.1.0 
│ │   │   ├─┬ load-json-file@1.1.0 
│ │   │   │ └── pify@2.3.0 
│ │   │   └── path-type@1.1.0 
│ │   ├── require-directory@2.1.1 
│ │   ├── require-main-filename@1.0.1 
│ │   ├── set-blocking@2.0.0 
│ │   ├── which-module@1.0.0 
│ │   ├── window-size@0.2.0 
│ │   ├── y18n@3.2.1 
│ │   └─┬ yargs-parser@4.2.1 
│ │     └── camelcase@3.0.0 
│ ├── connect-history-api-fallback@1.3.0 
│ ├── connect-logger@0.0.1 
│ └── minimist@1.2.0 
├── reflect-metadata@0.1.10 
├── rxjs@5.0.0-beta.6 
├─┬ systemjs@0.19.27 
│ └── when@3.7.8 
├── typescript@2.3.3 
├─┬ typings@1.5.0 
│ ├── any-promise@1.3.0 
│ ├── archy@1.0.0 
│ ├── bluebird@3.5.0 
│ ├─┬ chalk@1.1.3 
│ │ ├── ansi-styles@2.2.1 
│ │ ├─┬ has-ansi@2.0.0 
│ │ │ └── ansi-regex@2.1.1 
│ │ ├── strip-ansi@3.0.1 
│ │ └── supports-color@2.0.0 
│ ├─┬ cli-truncate@0.2.1 
│ │ ├── slice-ansi@0.0.4 
│ │ └─┬ string-width@1.0.2 
│ │   ├── code-point-at@1.1.0 
│ │   ├─┬ is-fullwidth-code-point@1.0.0 
│ │   │ └── number-is-nan@1.0.1 
│ │   └─┬ strip-ansi@3.0.1 
│ │     └── ansi-regex@2.1.1 
│ ├─┬ columnify@1.5.4 
│ │ ├─┬ strip-ansi@3.0.1 
│ │ │ └── ansi-regex@2.1.1 
│ │ └─┬ wcwidth@1.0.1 
│ │   └─┬ defaults@1.0.3 
│ │     └── clone@1.0.2 
│ ├── elegant-spinner@1.0.1 
│ ├── has-unicode@2.0.1 
│ ├── listify@1.0.0 
│ ├─┬ log-update@1.0.2 
│ │ ├── ansi-escapes@1.4.0 
│ │ └─┬ cli-cursor@1.0.2 
│ │   └─┬ restore-cursor@1.0.1 
│ │     ├── exit-hook@1.1.1 
│ │     └── onetime@1.1.0 
│ ├── promise-finally@2.2.1 
│ ├─┬ typings-core@1.6.1 
│ │ ├── array-uniq@1.0.3 
│ │ ├─┬ configstore@2.1.0 
│ │ │ ├─┬ dot-prop@3.0.0 
│ │ │ │ └── is-obj@1.0.1 
│ │ │ ├── os-tmpdir@1.0.2 
│ │ │ ├── osenv@0.1.4 
│ │ │ ├── uuid@2.0.3 
│ │ │ └─┬ write-file-atomic@1.3.4 
│ │ │   ├── imurmurhash@0.1.4 
│ │ │   └── slide@1.1.6 
│ │ ├─┬ detect-indent@4.0.0 
│ │ │ └─┬ repeating@2.0.1 
│ │ │   └── is-finite@1.0.2 
│ │ ├── graceful-fs@4.1.11 
│ │ ├─┬ has@1.0.1 
│ │ │ └── function-bind@1.1.0 
│ │ ├─┬ invariant@2.2.2 
│ │ │ └─┬ loose-envify@1.3.1 
│ │ │   └── js-tokens@3.0.1 
│ │ ├─┬ is-absolute@0.2.6 
│ │ │ ├─┬ is-relative@0.2.1 
│ │ │ │ └─┬ is-unc-path@0.1.2 
│ │ │ │   └── unc-path-regex@0.1.2 
│ │ │ └── is-windows@0.2.0 
│ │ ├── lockfile@1.0.3 
│ │ ├─┬ make-error-cause@1.2.2 
│ │ │ └── make-error@1.3.0 
│ │ ├─┬ mkdirp@0.5.1 
│ │ │ └── minimist@0.0.8 
│ │ ├─┬ object.pick@1.2.0 
│ │ │ └─┬ isobject@2.1.0 
│ │ │   └── isarray@1.0.0 
│ │ ├─┬ parse-json@2.2.0 
│ │ │ └─┬ error-ex@1.3.1 
│ │ │   └── is-arrayish@0.2.1 
│ │ ├─┬ popsicle@8.2.0 
│ │ │ ├── arrify@1.0.1 
│ │ │ ├─┬ form-data@2.1.4 
│ │ │ │ └── asynckit@0.4.0 
│ │ │ ├── throwback@1.1.1 
│ │ │ ├─┬ tough-cookie@2.3.2 
│ │ │ │ └── punycode@1.4.1 
│ │ │ └── xtend@4.0.1 
│ │ ├─┬ popsicle-proxy-agent@3.0.0 
│ │ │ ├─┬ http-proxy-agent@1.0.0 
│ │ │ │ └─┬ agent-base@2.1.0 
│ │ │ │   └── semver@5.0.3 
│ │ │ └── https-proxy-agent@1.0.0 
│ │ ├─┬ popsicle-retry@3.2.1 
│ │ │ └── xtend@4.0.1 
│ │ ├── popsicle-rewrite@1.0.0 
│ │ ├── popsicle-status@2.0.1 
│ │ ├─┬ rimraf@2.6.1 
│ │ │ └─┬ glob@7.1.2 
│ │ │   ├── fs.realpath@1.0.0 
│ │ │   ├─┬ inflight@1.0.6 
│ │ │   │ └── wrappy@1.0.2 
│ │ │   └── once@1.4.0 
│ │ ├─┬ sort-keys@1.1.2 
│ │ │ └── is-plain-obj@1.1.0 
│ │ ├── string-template@1.0.0 
│ │ ├─┬ strip-bom@2.0.0 
│ │ │ └── is-utf8@0.2.1 
│ │ ├── thenify@3.3.0 
│ │ ├── throat@3.0.0 
│ │ ├─┬ touch@1.0.0 
│ │ │ └─┬ nopt@1.0.10 
│ │ │   └── abbrev@1.1.0 
│ │ ├── xtend@4.0.1 
│ │ └── zip-object@0.1.0 
│ ├─┬ update-notifier@1.0.3 
│ │ ├─┬ boxen@0.6.0 
│ │ │ ├── ansi-align@1.1.0 
│ │ │ ├── camelcase@2.1.1 
│ │ │ ├─┬ chalk@1.1.3 
│ │ │ │ ├── ansi-styles@2.2.1 
│ │ │ │ ├─┬ has-ansi@2.0.0 
│ │ │ │ │ └── ansi-regex@2.1.1 
│ │ │ │ ├── strip-ansi@3.0.1 
│ │ │ │ └── supports-color@2.0.0 
│ │ │ ├── cli-boxes@1.0.0 
│ │ │ ├── filled-array@1.1.0 
│ │ │ └── widest-line@1.0.0 
│ │ ├─┬ chalk@1.1.3 
│ │ │ ├── ansi-styles@2.2.1 
│ │ │ ├─┬ has-ansi@2.0.0 
│ │ │ │ └── ansi-regex@2.1.1 
│ │ │ ├── strip-ansi@3.0.1 
│ │ │ └── supports-color@2.0.0 
│ │ ├── is-npm@1.0.0 
│ │ ├─┬ latest-version@2.0.0 
│ │ │ └─┬ package-json@2.4.0 
│ │ │   ├─┬ got@5.7.1 
│ │ │   │ ├─┬ create-error-class@3.0.2 
│ │ │   │ │ └── capture-stack-trace@1.0.0 
│ │ │   │ ├─┬ duplexer2@0.1.4 
│ │ │   │ │ └─┬ readable-stream@2.2.9 
│ │ │   │ │   ├── isarray@1.0.0 
│ │ │   │ │   └── string_decoder@1.0.1 
│ │ │   │ ├── is-redirect@1.0.0 
│ │ │   │ ├── is-retry-allowed@1.1.0 
│ │ │   │ ├── is-stream@1.1.0 
│ │ │   │ ├── lowercase-keys@1.0.0 
│ │ │   │ ├── node-status-codes@1.0.0 
│ │ │   │ ├─┬ read-all-stream@3.1.0 
│ │ │   │ │ └─┬ readable-stream@2.2.9 
│ │ │   │ │   ├── isarray@1.0.0 
│ │ │   │ │   └── string_decoder@1.0.1 
│ │ │   │ ├─┬ readable-stream@2.2.9 
│ │ │   │ │ ├── isarray@1.0.0 
│ │ │   │ │ └── string_decoder@1.0.1 
│ │ │   │ ├── timed-out@3.1.3 
│ │ │   │ ├── unzip-response@1.0.2 
│ │ │   │ └─┬ url-parse-lax@1.0.0 
│ │ │   │   └── prepend-http@1.0.4 
│ │ │   ├── registry-auth-token@3.3.1 
│ │ │   └── registry-url@3.1.0 
│ │ ├── lazy-req@1.1.0 
│ │ ├── semver-diff@2.1.0 
│ │ └─┬ xdg-basedir@2.0.0 
│ │   └── os-homedir@1.0.2 
│ ├── wordwrap@1.0.0 
│ └── xtend@4.0.1 
└── zone.js@0.6.26 

> phosphor-client@0.1.0 tsc /Users/lido/Code/Phosphor/src/Phosphor.Client
> tsc

Done /RunModule/Build/BuildClient 00:00:50.8842960
Done /RunModule/Build 00:00:56.8762200
Task /RunModule
Show-Module : One or more errors occurred. (Unable to load DLL 'libuv': The specified module or one of its dependencies could 
not be found.
 (Exception from HRESULT: 0x8007007E))
At line:11 char:9
+         Show-Module -OpenInBrowser
+         ~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Show-Module], AggregateException
    + FullyQualifiedErrorId : System.AggregateException,Microsoft.PowerShell.Phosphor.ShowModuleCmdlet

 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
[PHOSPHOR] /Users/lido/Code/Phosphor > [PHOSPHOR] /Users/lido/Code/Phosphor
[PHOSPHOR] /Users/lido/Code/Phosphor > [PHOSPHOR] /Users/lido/Code/Phosphor
[PHOSPHOR] /Users/lido/Code/Phosphor > [PHOSPHOR] /Users/lido/Code/Phosphor
[PHOSPHOR] /Users/lido/Code/Phosphor > [PHOSPHOR] /Users/lido/Code/Phosphor
 >                                     ls                                                                                       
LICENSE.txt     Phosphor.build.ps1  appveyor.yml        src
NuGet.config        README.md       prototype
[PHOSPHOR] /Users/lido/Code/Phosphor > [PHOSPHOR] /Users/lido/Code/Phosphor
 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
 >                                     ^C                                                                                       
 >                                     cd\                                                                                      
 >             ^C                                                                                                               
 >             exit                                                                                                             
Done /RunModule 00:02:35.8300170
Build succeeded. 5 tasks, 0 errors, 0 warnings 00:02:35.8684110
PS /Users/lido/Code/Phosphor>