- Remove Python codebase and packaging files - Consolidate Go application to single main.go file - Add Makefile for build management - Update README with new Go-only structure - Remove unused dependencies and legacy scripts
5 lines
122 B
Bash
Executable File
5 lines
122 B
Bash
Executable File
#!/bin/bash
|
|
echo "Running img2pdf..."
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
"$ROOT_DIR/bin/img2pdf"
|