Skip to content

Commit f5c14d2

Browse files
committed
fix dir path
1 parent de76cc0 commit f5c14d2

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

chatgpt-retrieval-plugin/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
99
ROOT_DIR=$(dirname $SCRIPT_DIR)
1010
. $ROOT_DIR/env.sh
1111

12-
. $SCRIPT_DIR/utils.sh
12+
. $ROOT_DIR/.evergreen/utils.sh
1313

1414
PYTHON_BINARY=$(find_python3)
1515
$PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}')"

docarray/run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ ROOT_DIR=$(dirname $SCRIPT_DIR)
1111

1212
. $ROOT_DIR/env.sh
1313

14-
. $SCRIPT_DIR/utils.sh
14+
. $ROOT_DIR/.evergreen/utils.sh
15+
1516
PYTHON_BINARY=$(find_python3)
1617
$PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}')"
1718

langchain-python/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
88
ROOT_DIR=$(dirname $SCRIPT_DIR)
99
. $ROOT_DIR/env.sh
1010

11-
. $SCRIPT_DIR/utils.sh
11+
. $ROOT_DIR/.evergreen/utils.sh
1212

1313
PYTHON_BINARY=$(find_python3)
1414

langgraph-python/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
88
ROOT_DIR=$(dirname $SCRIPT_DIR)
99
. $ROOT_DIR/env.sh
1010

11-
. $SCRIPT_DIR/utils.sh
11+
. $ROOT_DIR/.evergreen/utils.sh
1212

1313
PYTHON_BINARY=$(find_python3)
1414

llama-index-python-kvstore/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
77
ROOT_DIR=$(dirname $SCRIPT_DIR)
88
. $ROOT_DIR/env.sh
99

10-
. $SCRIPT_DIR/utils.sh
10+
. $ROOT_DIR/.evergreen/utils.sh
1111

1212
PYTHON_BINARY=$(find_python3)
1313
$PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}')"

llama-index-python-vectorstore/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
77
ROOT_DIR=$(dirname $SCRIPT_DIR)
88
. $ROOT_DIR/env.sh
99

10-
. $SCRIPT_DIR/utils.sh
10+
. $ROOT_DIR/.evergreen/utils.sh
1111

1212
PYTHON_BINARY=$(find_python3)
1313
$PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}')"

semantic-kernel-csharp/run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
77
ROOT_DIR=$(dirname $SCRIPT_DIR)
88
. $ROOT_DIR/env.sh
99

10-
. $SCRIPT_DIR/utils.sh
10+
. $ROOT_DIR/.evergreen/utils.sh
11+
1112
# WORKING_DIR = $ROOT_DIR/semantic-kernel-csharp/semantic-kernel
1213

1314
# Install .NET

semantic-kernel-python/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPT_DIR=$(realpath $(dirname ${BASH_SOURCE[0]}))
77
ROOT_DIR=$(dirname $SCRIPT_DIR)
88
. $ROOT_DIR/env.sh
99

10-
. $SCRIPT_DIR/utils.sh
10+
. $ROOT_DIR/.evergreen/utils.sh
1111

1212
PYTHON_BINARY=$(find_python3)
1313

0 commit comments

Comments
 (0)