Skip to content

🪟 🔧 Switch to the new airbyte-cloud repo name #22198

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions airbyte-webapp/scripts/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ if (!process.env.AB_ENV) {

const envFile = path.resolve(
__dirname,
"../../../airbyte-cloud/cloud-webapp/development",
"../../../airbyte-platform-internal/cloud-webapp/development",
`.env.${process.env.AB_ENV}`
);

if (!fs.existsSync(envFile)) {
console.error(
`~~~ This mode is for Airbyte employees only. ~~~\n` +
`Could not find .env file for environment ${process.env.AB_ENV} (looking at ${envFile}).\n` +
`Make sure you have the latest airbyte-cloud repository checked out in a directory directly next to the airbyte OSS repository.\n`
`Make sure you have the latest airbyte-platform-internal repository checked out in a directory directly next to the airbyte OSS repository.\n`
);
process.exit(42);
}
Expand Down