#!/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" "$@"