mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 13:27:21 +00:00
13 lines
304 B
Bash
13 lines
304 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
cd /workspace
|
||
|
|
|
||
|
|
# Ensures generated source files are present upon load
|
||
|
|
make prepare
|
||
|
|
|
||
|
|
echo "Standard Post-Start script completed."
|
||
|
|
|
||
|
|
if [ -f "/devcontainer-customization/poststart.sh" ]; then
|
||
|
|
echo "Launching customization poststart.sh"
|
||
|
|
bash "/devcontainer-customization/poststart.sh"
|
||
|
|
fi
|