2026-04-16 16:27:27 +08:00

19 lines
451 B
Bash

#!/bin/bash
# harnessed_reasoning build script
set -e
echo "Building harnessed_reasoning module..."
# Get the main application wwwroot directory
MAIN_WWWROOT="/path/to/main/wwwroot"
# Create symbolic links for wwwroot files
for file in wwwroot/*; do
if [ -f "$file" ]; then
filename=$(basename "$file")
ln -sf "$file" "$MAIN_WWWROOT/harnessed_reasoning_$filename"
fi
done
echo "harnessed_reasoning module build completed!"