6 lines
114 B
Bash
Executable File
6 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# home.sh: Print the complete path to the Neon project root directory.
|
|
|
|
(cd $(dirname $0)/.. && pwd)
|