mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
13 lines
323 B
Bash
Executable File
13 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Wrapper script for the MinIO to SeaweedFS migration tool
|
|
# This allows calling the migration from the root directory
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
|
|
|
|
cd "$PROJECT_ROOT/plugin-server"
|
|
exec node bin/migrate-minio-to-seaweedfs.js "$@"
|
|
|