aboutsummaryrefslogtreecommitdiff
path: root/ipsbuild.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-05-29 10:46:09 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-05-29 10:46:09 -0400
commitda2ddccd030efc54b451eec6f5911e0995474dc4 (patch)
tree03c970fda771e6584e57eca7dbe0d2804ca2f410 /ipsbuild.py
parentc970cf92b878e9d7912b5fa2f9916b59a739041f (diff)
downloadipsutils-da2ddccd030efc54b451eec6f5911e0995474dc4.tar.gz
Use absolute path of spec file
Diffstat (limited to 'ipsbuild.py')
-rwxr-xr-xipsbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsbuild.py b/ipsbuild.py
index 7ce11f9..02dc254 100755
--- a/ipsbuild.py
+++ b/ipsbuild.py
@@ -30,7 +30,7 @@ args = parser.parse_args()
cwd = os.path.abspath(os.curdir)
if args.spec:
for spec in args.spec:
- build = ipsutils.build.Build(spec, options=args)
+ build = ipsutils.build.Build(os.path.abspath(spec), options=args)
build.show_summary()
build.controller.do_tasks()
os.chdir(cwd)