Skip to content

Commit

Permalink
Updated the installation script accordingly to microsoft/vscode#30909
Browse files Browse the repository at this point in the history
instructions and added binaries folders to
CodeTextStudio.sublime-project from vscode/.gitignore
  • Loading branch information
evandrocoan committed Jul 25, 2017
1 parent bc4bb66 commit a9093ac
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CodeTextStudio.sublime-project
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
],
"folder_exclude_patterns":
[
"out",
"coverage",
"node_modules",
"out-build",
"out-editor",
"out-editor-min",
"out-monaco-editor-core",
"out-vscode",
"out-vscode-min",
"build/node_module",
"settings/Cache",
"settings/CachedData",
"settings/GPUCache",
Expand Down
24 changes: 20 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,17 @@ printf "Success\!\n"
1. Working on...
```shell
# Download the required files
git clone --recursive -j8 https://github.com/evandrocoan/VSCodeStudio
git clone --recursive -j8 https://github.com/evandrocoan/CodeTextStudio
cd CodeTextStudio/vscode

Working on...
# https://github.com/Microsoft/vscode/issues/30909
git clean -xfd .
git pull
./scripts/npm.sh install

# https://unix.stackexchange.com/questions/3886/difference-between-nohup-disown-and
npm run watch &
./code

# Success
printf "Success\\!\n"
Expand Down Expand Up @@ -95,9 +103,17 @@ Requirements for `Windows` systems are:
1. Working on...
```batch
:: Download the required files
git clone --recursive -j8 https://github.com/evandrocoan/VSCodeStudio
git clone --recursive -j8 https://github.com/evandrocoan/CodeTextStudio
cd CodeTextStudio\vscode
Working on...
:: https://github.com/Microsoft/vscode/issues/30909
git clean -xfd .
git pull
.\scripts\npm.bat install
:: https://superuser.com/questions/1069972/windows-run-process-on-background-after-closing-cmd
start /B npm run watch
.\code
:: Success
echo "Success\\!\n"
Expand Down

0 comments on commit a9093ac

Please sign in to comment.