mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-03 18:22:57 +00:00
10 lines
187 B
Bash
10 lines
187 B
Bash
#!/bin/sh
|
|
|
|
# Create uploads directory if it doesn't exist
|
|
mkdir -p ./uploads
|
|
|
|
# Set proper permissions
|
|
chmod -R 755 ./uploads
|
|
|
|
echo "Initialization complete. Uploads directory is ready."
|