Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
use `realpath` instead of `abspath`
· b4485f02
Ansgar
authored
Sep 23, 2019
`abspath` broke with the `/usr/local/bin/dak` symlink as it would refer to the path of said symlink.
b4485f02
Merge branch 'master' into deploy
· 5960b1b1
Ansgar
authored
Sep 23, 2019
5960b1b1
Show whitespace changes
Inline
Side-by-side
dak/dak.py
View file @
5960b1b1
...
...
@@ -40,7 +40,7 @@ import os
import
sys
import
traceback
sys
.
path
.
insert
(
0
,
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abs
path
(
__file__
))))
sys
.
path
.
insert
(
0
,
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
real
path
(
__file__
))))
import
daklib.utils
...
...