Skip to content

Commit

Permalink
fix: jans-linux setup enable couchbase for packages (#3249)
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Dec 7, 2022
1 parent 46d1301 commit 8f72ea6
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -651,10 +651,9 @@ def prompt_for_backend(self):
BackendStrings.REMOTE_PGSQL,
]

if not os.path.exists(os.path.join(Config.install_dir, 'package')):
backend_types += [BackendStrings.REMOTE_COUCHBASE, BackendStrings.CLOUD_SPANNER]
if 'couchbase' in self.getBackendTypes():
backend_types.insert(2, BackendStrings.LOCAL_COUCHBASE)
backend_types += [BackendStrings.REMOTE_COUCHBASE, BackendStrings.CLOUD_SPANNER]
if 'couchbase' in self.getBackendTypes():
backend_types.insert(2, BackendStrings.LOCAL_COUCHBASE)

nlist = []
for i, btype in enumerate(backend_types):
Expand Down

0 comments on commit 8f72ea6

Please sign in to comment.