diff --git a/docs/development/build-instructions-linux.md b/docs/development/build-instructions-linux.md index eff71b396f19..e6f9b3382666 100644 --- a/docs/development/build-instructions-linux.md +++ b/docs/development/build-instructions-linux.md @@ -105,7 +105,7 @@ After building is done, you can find the `electron` debug binary under `out/D`. To clean the build files: ```bash -$ ./script/clean.py +$ npm run clean ``` ## Troubleshooting diff --git a/docs/development/build-instructions-osx.md b/docs/development/build-instructions-osx.md index 7bf89f56c515..8d87a4988183 100644 --- a/docs/development/build-instructions-osx.md +++ b/docs/development/build-instructions-osx.md @@ -51,6 +51,14 @@ After building is done, you can find `Electron.app` under `out/D`. Electron can only be built for a 64bit target on macOS and there is no plan to support 32bit macOS in the future. +## Cleaning + +To clean the build files: + +```bash +$ npm run clean +``` + ## Tests Test your changes conform to the project coding style using: diff --git a/docs/development/build-instructions-windows.md b/docs/development/build-instructions-windows.md index 400fa370e8c5..d66ca18867d2 100644 --- a/docs/development/build-instructions-windows.md +++ b/docs/development/build-instructions-windows.md @@ -77,6 +77,14 @@ To generate a Visual Studio project, you can pass the `--msvs` parameter: $ python script\bootstrap.py --msvs ``` +## Cleaning + +To clean the build files: + +```powershell +$ npm run clean +``` + ## Tests Test your changes conform to the project coding style using: