12 lines
436 B
Bash
Executable File
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" "$@"
|