12 lines
192 B
Bash
12 lines
192 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "[upload-gltf] Starting Upload GLTF..."
|
|
|
|
# Ensure tmp directory for uploads exists
|
|
mkdir -p /tmp/assets
|
|
|
|
echo "[upload-gltf] Ready. Launching application..."
|
|
|
|
exec "$@"
|