Powershell'ify everything

This commit is contained in:
Paul Betts 2014-11-14 19:13:40 -08:00
parent e0fddcb7ce
commit ed633b3250

View file

@ -22,8 +22,8 @@ Studio will come in the future.
## Getting the code ## Getting the code
```bash ```powershell
$ git clone https://github.com/atom/atom-shell.git git clone https://github.com/atom/atom-shell.git
``` ```
## Bootstrapping ## Bootstrapping
@ -32,23 +32,23 @@ The bootstrap script will download all necessary build dependencies and create
build project files. Notice that we're using `ninja` to build atom-shell so build project files. Notice that we're using `ninja` to build atom-shell so
there is no Visual Studio project generated. there is no Visual Studio project generated.
```bash ```powershell
$ cd atom-shell cd atom-shell
$ python script/bootstrap.py python script\bootstrap.py
``` ```
## Building ## Building
Build both Release and Debug targets: Build both Release and Debug targets:
```bash ```powershell
$ python script/build.py python script\build.py
``` ```
You can also only build the Debug target: You can also only build the Debug target:
```bash ```powershell
$ python script/build.py -c Debug python script\build.py -c Debug
``` ```
After building is done, you can find `atom.exe` under `out\Debug`. After building is done, you can find `atom.exe` under `out\Debug`.
@ -60,8 +60,8 @@ Currently atom-shell can only be built for 32bit target on Windows, support for
## Tests ## Tests
```bash ```powershell
$ python script/test.py python script\test.py
``` ```
## Troubleshooting ## Troubleshooting
@ -107,6 +107,6 @@ Try reinstalling 32bit node.js.
Simply making that directory [should fix the problem](http://stackoverflow.com/a/25095327/102704): Simply making that directory [should fix the problem](http://stackoverflow.com/a/25095327/102704):
```bash ```powershell
mkdir /cygdrive/c/Users/USERNAME/AppData/Roaming/npm mkdir ~\AppData\Roaming\npm
``` ```