mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
17 lines
350 B
Bash
Executable File
17 lines
350 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
BINBASE=`dirname $0`
|
|
BASE=`pwd`
|
|
LOCATION="$BASE/.instant"
|
|
|
|
eval "$BINBASE/get-instant-client.sh '$LOCATION'"
|
|
|
|
export ORACLE_CLI_PATH="$LOCATION/instantclient_21_17/"
|
|
export LD_LIBRARY_PATH="$ORACLE_CLI_PATH"
|
|
export ELECTRON_RUN_AS_NODE=1
|
|
export TEST_MODE=1
|
|
|
|
yarn workspace beekeeper-studio internal:integration "$@"
|