mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 01:56:21 +00:00
Clean up a couple regressions.
This commit is contained in:
parent
dd4851498a
commit
a456093f13
10
dist/verbs/build.js
vendored
10
dist/verbs/build.js
vendored
@ -129,6 +129,11 @@ Implementation of the 'build' verb for HackMyResume.
|
||||
});
|
||||
try {
|
||||
tFolder = _verifyTheme.call(this, _opts.theme);
|
||||
if (tFolder.fluenterror) {
|
||||
tFolder.quit = true;
|
||||
this.err(tFolder.fluenterror, tFolder);
|
||||
return;
|
||||
}
|
||||
theme = _opts.themeObj = _loadTheme(tFolder);
|
||||
_addFreebieFormats(theme);
|
||||
} catch (_error) {
|
||||
@ -406,9 +411,10 @@ Implementation of the 'build' verb for HackMyResume.
|
||||
if (!exists(tFolder)) {
|
||||
tFolder = PATH.resolve(themeNameOrPath);
|
||||
if (!exists(tFolder)) {
|
||||
this.err(HMSTATUS.themeNotFound, {
|
||||
return {
|
||||
fluenterror: HMSTATUS.themeNotFound,
|
||||
data: _opts.theme
|
||||
});
|
||||
};
|
||||
}
|
||||
}
|
||||
return tFolder;
|
||||
|
1
dist/verbs/verb.js
vendored
1
dist/verbs/verb.js
vendored
@ -73,7 +73,6 @@ Definition of the Verb class.
|
||||
payload["throw"] = hot;
|
||||
this.setError(errorCode, payload);
|
||||
if (payload.quit) {
|
||||
console.log(payload);
|
||||
this.reject(errorCode);
|
||||
}
|
||||
this.fire('error', payload);
|
||||
|
@ -81,6 +81,10 @@ _build = ( src, dst, opts ) ->
|
||||
@stat HMEVENT.beforeTheme, { theme: _opts.theme }
|
||||
try
|
||||
tFolder = _verifyTheme.call @, _opts.theme
|
||||
if tFolder.fluenterror
|
||||
tFolder.quit = true
|
||||
@err tFolder.fluenterror, tFolder
|
||||
return
|
||||
theme = _opts.themeObj = _loadTheme tFolder
|
||||
_addFreebieFormats theme
|
||||
catch
|
||||
@ -328,7 +332,7 @@ _verifyTheme = ( themeNameOrPath ) ->
|
||||
if !exists( tFolder )
|
||||
tFolder = PATH.resolve themeNameOrPath
|
||||
if !exists tFolder
|
||||
this.err HMSTATUS.themeNotFound, { data: _opts.theme }
|
||||
return fluenterror: HMSTATUS.themeNotFound, data: _opts.theme
|
||||
tFolder
|
||||
|
||||
|
||||
|
@ -60,7 +60,6 @@ module.exports = class Verb
|
||||
payload.throw = hot
|
||||
@setError errorCode, payload
|
||||
if payload.quit
|
||||
console.log payload
|
||||
@reject errorCode
|
||||
@fire 'error', payload
|
||||
if hot
|
||||
|
Loading…
Reference in New Issue
Block a user