Skip to content

Commit

Permalink
Update messages in rebuild script
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarenerd committed Mar 5, 2023
1 parent fc6788b commit 5eb263f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
16 changes: 7 additions & 9 deletions rebuild.ps1
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
Write-Host @"
This script will:
- Kill any running build daemons,
- Recursively remove any existing 'node_modules' folders,
- Remove the '.build' directory,
- Rebuild the aforementioned 'node_modules' folders,
- Re-compile the existing Typescript source.
- Kill any running build daemons
- Recursively remove any existing 'node_modules' folders
- Remove the '.build' directory
- Rebuild the aforementioned 'node_modules' folders
This will probably take a while, so only run this script
if you're stuck and you need to restart from a fresh slate.
This will probably take a while, so only run this script if you're stuck and
you need to restart from a fresh slate.
After running this script, you can run the build task in
Visual Studio Code using ⇧⌘B (macOS) or Ctrl+Shift+B (Windows).
Once this script is done, launch the build tasks using Ctrl+Shift+B on Windows.
"@

Expand Down
17 changes: 8 additions & 9 deletions rebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@
cat <<- EOF
This script will:
- Kill any running build daemons,
- Recursively remove any existing 'node_modules' folders,
- Remove the '.build' directory,
- Rebuild the aforementioned 'node_modules' folders,
- Re-compile the existing Typescript source.
- Kill any running build daemons
- Recursively remove any existing 'node_modules' folders
- Remove the '.build' directory
- Rebuild the aforementioned 'node_modules' folders
This will probably take a while, so only run this script
if you're stuck and you need to restart from a fresh slate.
This will probably take a while, so only run this script if you're stuck and
you need to restart from a fresh slate.
After running this script, you can run the build task in
Visual Studio Code using ⇧⌘B (macOS) or Ctrl+Shift+B (Windows).
Once this script is done, launch the build tasks using ⇧⌘B (macOS) or
Ctrl+Shift+B (Linux).
EOF
read -p 'Do you want to proceed? [y/N]: ' proceed
Expand Down

0 comments on commit 5eb263f

Please sign in to comment.