Skip to content

Commit 54450d4

Browse files
committed
Fixinator Version 6.1.1
Fix forceLocal, additional debug info
1 parent 55f0b57 commit 54450d4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

box.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name":"fixinator",
3-
"version":"6.1.0",
3+
"version":"6.1.1",
44
"author":"Foundeo Inc.",
5-
"location":"foundeo/fixinator#v6.1.0",
5+
"location":"foundeo/fixinator#v6.1.1",
66
"homepage":"https://fixinator.app/",
77
"documentation":"https://github.com/foundeo/fixinator/wiki",
88
"repository":{

commands/fixinator.cfc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,10 @@ component extends="commandbox.system.BaseCommand" excludeFromHelp=false {
130130
isEnterprise = true;
131131
} catch(any entErr) {
132132
//not using enterprise version
133-
if (!arguments.forceLocal) {
133+
if (arguments.forceLocal) {
134134
rethrow;
135+
} else if (arguments.debug) {
136+
print.grayLine("Debug: Failed to Load Enterprise Instance: #entErr.message#");
135137
}
136138
}
137139

0 commit comments

Comments
 (0)