mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
changed python to python3
Script is written in python3, all distros should contain python3 but python does not always correspond to python3
This commit is contained in:
parent
63e67e1af1
commit
7977ae3910
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ DIR="$(basename ${ARCHIVE} .tar.gz)"
|
|||
relpath() {
|
||||
# workaround because Ubuntu seems to use an ancient realpath version
|
||||
# https://stackoverflow.com/questions/2564634/convert-absolute-path-into-relative-path-given-a-current-directory-using-bash#comment12808306_7305217
|
||||
python -c "import os.path; print(os.path.relpath('${2:-$PWD}','$1'))";
|
||||
python3 -c "import os.path; print(os.path.relpath('${2:-$PWD}','$1'))";
|
||||
}
|
||||
|
||||
HERMIT_TOP="$(git rev-parse --show-toplevel)"
|
||||
|
|
Loading…
Add table
Reference in a new issue