mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-21 19:20:08 +02:00
10 lines
206 B
Bash
10 lines
206 B
Bash
#!/bin/bash
|
|
|
|
acbin=$(finddir B_SYSTEM_APPS_DIRECTORY)/AssaultCube/ac_client
|
|
|
|
if [ ! -e $acbin ]; then
|
|
acbin=$(finddir B_USER_APPS_DIRECTORY)/AssaultCube/ac_client
|
|
fi
|
|
|
|
$acbin --init --loadmap=ac_ingress $@
|