From 487a195320c8f33f5e441f4b8ece8af882ae6b6b Mon Sep 17 00:00:00 2001 From: Adham Saad Date: Fri, 17 Mar 2017 20:44:18 +0200 Subject: [PATCH] :bug: #8919 - add new command to the docs --- README.md | 3 --- docs/development/build-instructions-linux.md | 8 ++++++++ docs/development/build-instructions-osx.md | 8 ++++++++ docs/development/build-instructions-windows.md | 8 ++++++++ 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0822d70742aa..655d613baf82 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -Attempting to add full kiosk mode functionality on windows 7 -== - [![Electron Logo](https://electron.atom.io/images/electron-logo.svg)](https://electron.atom.io/) [![Travis Build Status](https://travis-ci.org/electron/electron.svg?branch=master)](https://travis-ci.org/electron/electron) diff --git a/docs/development/build-instructions-linux.md b/docs/development/build-instructions-linux.md index 42b7730a84ab..8d88d2ee870c 100644 --- a/docs/development/build-instructions-linux.md +++ b/docs/development/build-instructions-linux.md @@ -117,6 +117,14 @@ To clean the build files: $ npm run clean ``` +To clean only `out` and `dir` directories: + +```bash +$ npm run clean-build +``` + +Note that both commands will require to do run bootstrap again . + ## Troubleshooting ### Error While Loading Shared Libraries: libtinfo.so.5 diff --git a/docs/development/build-instructions-osx.md b/docs/development/build-instructions-osx.md index 7b934cd55b2a..af0d01173d39 100644 --- a/docs/development/build-instructions-osx.md +++ b/docs/development/build-instructions-osx.md @@ -85,6 +85,14 @@ To clean the build files: $ npm run clean ``` +To clean only `out` and `dir` directories: + +```bash +$ npm run clean-build +``` + +Note that both commands will require to do run bootstrap again . + ## Tests See [Build System Overview: Tests](build-system-overview.md#tests) diff --git a/docs/development/build-instructions-windows.md b/docs/development/build-instructions-windows.md index 2146abad97b9..20981b8aa92d 100644 --- a/docs/development/build-instructions-windows.md +++ b/docs/development/build-instructions-windows.md @@ -83,6 +83,14 @@ To clean the build files: $ npm run clean ``` +To clean only `out` and `dir` directories: + +```bash +$ npm run clean-build +``` + +Note that both commands will require to do run bootstrap again . + ## Tests See [Build System Overview: Tests](build-system-overview.md#tests)