Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
56b9af33
Unverified
Commit
56b9af33
authored
Sep 13, 2024
by
Daniel Hiltgen
Committed by
GitHub
Sep 13, 2024
Browse files
Fix incremental builds on linux (#6780)
scripts: fix incremental builds on linux or similar
parent
fda0d3be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
llm/generate/gen_common.sh
llm/generate/gen_common.sh
+1
-1
No files found.
llm/generate/gen_common.sh
View file @
56b9af33
...
@@ -137,7 +137,7 @@ wait_for_compress() {
...
@@ -137,7 +137,7 @@ wait_for_compress() {
install
()
{
install
()
{
echo
"Installing libraries to bin dir
${
BUILD_DIR
}
/bin/"
echo
"Installing libraries to bin dir
${
BUILD_DIR
}
/bin/"
for
lib
in
$(
find
${
BUILD_DIR
}
-name
\*
.
${
LIB_EXT
}
)
;
do
for
lib
in
$(
find
${
BUILD_DIR
}
-name
\*
.
${
LIB_EXT
}
|
grep
-v
"
${
BUILD_DIR
}
/bin/"
)
;
do
rm
-f
"
${
BUILD_DIR
}
/bin/
$(
basename
${
lib
}
)
"
rm
-f
"
${
BUILD_DIR
}
/bin/
$(
basename
${
lib
}
)
"
cp
-af
"
${
lib
}
"
"
${
BUILD_DIR
}
/bin/"
cp
-af
"
${
lib
}
"
"
${
BUILD_DIR
}
/bin/"
done
done
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment