mirror of
https://github.com/tcsenpai/screenshot_assistant.git
synced 2025-06-03 01:40:13 +00:00
7 lines
247 B
Bash
Executable File
7 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Get the directory where the script is located
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Change to the script directory and run the Python script using uv
|
|
cd "$SCRIPT_DIR" && uv run python src/main.py |