Commit 40fa9cf 1 parent a100f2c commit 40fa9cf Copy full SHA for 40fa9cf
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ RUN mkdir -p characters
88
88
89
89
# Add debugging to startup command
90
90
CMD sh -c '\
91
- normalize_and_copy_characters() {
91
+ normalize_and_copy_characters() { \
92
92
echo "Debug: Copying and normalizing character files..." && \
93
93
for file in $(gsutil ls "gs://${AGENTS_BUCKET_NAME}/${DEPLOYMENT_ID}/*.character.json"); do \
94
94
filename=$(basename "$file") && \
@@ -97,11 +97,11 @@ CMD sh -c '\
97
97
gsutil cp "$file" "/app/characters/$lowercase_filename"; \
98
98
done && \
99
99
echo "Debug: Normalized character files in directory:" && \
100
- ls -la /app/characters/
100
+ ls -la /app/characters/; \
101
101
} && \
102
102
103
103
echo "Debug: Starting container initialization" && \
104
- echo "Verifying jq installation..." && \
104
+ echo "Verifying jq installation..." && \'
105
105
if command -v jq > /dev/null 2>&1; then
106
106
echo "jq is installed at $(command -v jq)"
107
107
else
You can’t perform that action at this time.
0 commit comments