We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f716182 commit e109c9dCopy full SHA for e109c9d
2 files changed
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
### Fixes
6
7
+- [Issue #14] - Bake fails with eternallybored's wget for Windows
8
- [Issue #12] - Doesn't properly kill server
9
10
## [0.1.0] - 2018-03-31
index.js
@@ -113,7 +113,13 @@ function download() {
113
console.log("Running " + wgetcmd);
114
115
try {
116
- shell.execSync(wgetcmd);
+
117
+ try {
118
+ shell.execSync(wgetcmd);
119
+ }
120
+ catch (ex) {
121
+ console.log("Wget exited unexpectedly. Please check output before committing.");
122
123
124
// Run the post command
125
if (config.postcmd && config.postcmd.length) {
0 commit comments