mirror of
https://github.com/doolijb/serene-pub.git
synced 2026-04-28 03:20:07 +00:00
6 lines
178 B
Bash
Executable file
6 lines
178 B
Bash
Executable file
#!/bin/bash
|
|
# Serene Pub Application Launcher
|
|
# This launches the main run.sh script
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
cd "$DIR"
|
|
exec ./run.sh
|