A Community-led Hyper-Hackable Text Editor
Go to file
Radu Micu 8e6dcf43b0 better script/clean removal for windows
Now `script/clean` uses `del /F /Q /S` to cleanup the folders but `del /S` deletes specified files from all subdirectories, so if we pass a folder as a parameter it will only delete the files within the folder and all subfolders recursively but not the actual folders. And this can cause problems, see Issue #2487

A better way is to use `rmdir /S /Q` as it takes care of the folder itself and it's contents.
/S - removes all directories and files in the specified directory in addition to the directory itself. (removes the directory tree)
/Q - obvious this is quite mode

I tested this approach on a couple machines that needed a clean before building and works OK with `rmdir`. It might give a warning in the console like `The system cannot find the file specified.` because not all of them are there but it can be ignored as the script will finish running.
2014-06-06 11:26:43 +01:00
apm Upgrade to apm 0.65 2014-06-05 11:19:37 -07:00
benchmark Update rootView references in benchmarks 2013-11-26 11:02:54 -08:00
build Upgrade to minidump 0.6 2014-05-28 20:19:26 -07:00
docs Merge pull request #2515 from atom/star-api-docs 2014-06-05 16:24:03 -07:00
dot-atom Add .gitignore file to dot-atom. 2014-04-30 14:41:23 -07:00
exports Export {Workspace} in the 'atom' module 2014-03-03 16:00:36 -07:00
keymaps Update linux.cson 2014-06-04 22:11:29 -07:00
menus 🏁 Match Chrome's Settings menu item 2014-06-02 13:51:38 -07:00
resources Update atom.ico in resources directory 2014-05-19 14:04:34 -07:00
script better script/clean removal for windows 2014-06-06 11:26:43 +01:00
spec Use path.join instead of path.resolve 2014-06-04 10:01:45 -07:00
src 🏁 Don't crash when closing spec window 2014-06-04 14:33:39 -07:00
static Only show the first 10 lines of a spec failure and its stacktrace 2014-06-05 11:36:58 -07:00
vendor Install apm from npmjs.org 2014-04-24 15:43:35 -07:00
.gitattributes Add a newline to the end of .gitattributes 2013-11-07 09:22:41 -08:00
.gitignore ignore Thumbs.db in workspace-view and in actual atom gitignore 2014-05-06 21:24:11 -04:00
.npmrc Remove empty ca setting 2014-05-29 09:26:18 -07:00
.pairs Merge branch 'master' into summit 2013-08-14 14:05:35 -07:00
atom.sh Minor fix + Remove last references to /tmp 2014-05-19 23:57:48 +05:30
CONTRIBUTING.md Issue reports should include Atom version and OS 2014-06-04 17:31:11 +02:00
LICENSE.md Add .md extension 2014-04-23 15:36:57 -07:00
package.json Downgrade to space-pen 3.2.0 2014-06-05 17:06:48 -07:00
README.md FreeBSD 2014-05-09 09:28:50 +02:00

Atom

Atom is a hackable text editor for the 21st century, built on atom-shell, and based on everything we love about our favorite editors. We designed it to be deeply customizable, but still approachable using the default configuration.

Visit atom.io to learn more.

Installing

Download the latest Atom release.

Atom will automatically update when a new release is available.

Building

Developing

Check out the guides and the API reference.