Skip to content

Commit 75d6c42

Browse files
committed
Removed console error when no Gemfile is found.
1 parent 3bdb71b commit 75d6c42

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

Scripts/configuration.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@ exports.Configuration = class Configuration {
3838
if (gemfilePath == null) {
3939
try {
4040
gemfileHandler = nova.fs.open(`${FUNCTIONS.normalizePath(nova.workspace.path)}/Gemfile`)
41-
} catch (error) {
42-
console.log(
43-
'No \'Gemfile\' could be found in the root directory of this project. Please go to the ' +
44-
'extension preferences and set the location of the \'Gemfile\' for this project.')
45-
}
41+
} catch (error) { }
4642
} else {
4743
try {
4844
gemfileHandler = nova.fs.open(`${FUNCTIONS.normalizePath(gemfilePath)}`)

0 commit comments

Comments
 (0)