Last change
on this file was 37683, checked in by davidb, 5 months ago |
Renaming of scripts from 'CUSTOM' to 'with-exts'; scripts updated to use the new name
|
File size:
460 bytes
|
Rev | Line | |
---|
[34322] | 1 | #!/bin/bash
|
---|
[34321] | 2 |
|
---|
[36483] | 3 | # See: https://stackoverflow.com/questions/29832037/how-to-get-script-directory-in-posix-sh/29835459#29835459
|
---|
[34321] | 4 |
|
---|
[36483] | 5 | full_progdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" > /dev/null && pwd )"
|
---|
| 6 | full_parentdir=${full_progdir%/*}
|
---|
[34323] | 7 |
|
---|
[37161] | 8 | cd "$full_parentdir" \
|
---|
| 9 | && if [ -f SETUP.bash ] ; then . ./SETUP.bash ; else . ./gs3-setup-cli.sh && . ./gs3-setup.sh ; fi \
|
---|
[37683] | 10 | && if [ -f ant-start-with-exts.sh ] ; then ./ant-start-with-exts.sh ; else ant start ; fi
|
---|
[36483] | 11 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.