Skip to content

Commit 76d3af8

Browse files
authored
fix(build): remove chat-ui references from wheel build script (#1835)
1 parent ba0d5c6 commit 76d3af8

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

.github/scripts/build.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,14 @@ set -e
55

66
# Define variables for paths
77
PACKAGE_DIR="nemoguardrails"
8-
CHAT_UI_SRC="chat-ui"
98
EXAMPLES_SRC="examples"
10-
CHAT_UI_DST="$PACKAGE_DIR/chat-ui"
119
EXAMPLES_DST="$PACKAGE_DIR/examples"
1210

1311
# Copy the directories into the package directory
14-
cp -r "$CHAT_UI_SRC" "$CHAT_UI_DST"
1512
cp -r "$EXAMPLES_SRC" "$EXAMPLES_DST"
1613

1714
# Build the wheel using Poetry
1815
poetry build
1916

2017
# Remove the copied directories after building
21-
rm -rf "$CHAT_UI_DST"
2218
rm -rf "$EXAMPLES_DST"

0 commit comments

Comments
 (0)