Files
n_os_tr/lb-wrapper.sh
Your Name 1a020a7dca First
2025-08-16 16:24:12 -04:00

12 lines
436 B
Bash
Executable File

#!/bin/bash
# Live-build wrapper script
# This script allows you to run live-build commands from the local repository
# without needing to type the full path each time
# Set the LIVE_BUILD environment variable to point to our local repository
export LIVE_BUILD="/home/teknari/Sync/Programming/VibeCoding/n_os_tr/live-build"
# Execute the lb command from our repository with all passed arguments
exec "${LIVE_BUILD}/frontend/lb" "$@"