mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
Whilst trying to get some kine of automated build. .. shifted scripts to an osx subdirectory .. removed the desire to build for Linux
12 lines
316 B
Bash
12 lines
316 B
Bash
#!/bin/bash
|
|
|
|
echo
|
|
echo "# arguments called with ----> ${@} "
|
|
echo "# \$1 ----------------------> $1 "
|
|
echo "# \$2 ----------------------> $2 "
|
|
echo "# path to me ---------------> ${0} "
|
|
echo "# parent path --------------> ${0%/*} "
|
|
echo "# my name ------------------> ${0##*/} "
|
|
echo
|
|
exit
|