diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-29 10:46:09 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-29 10:46:09 -0400 |
commit | da2ddccd030efc54b451eec6f5911e0995474dc4 (patch) | |
tree | 03c970fda771e6584e57eca7dbe0d2804ca2f410 /ipsbuild.py | |
parent | c970cf92b878e9d7912b5fa2f9916b59a739041f (diff) | |
download | ipsutils-da2ddccd030efc54b451eec6f5911e0995474dc4.tar.gz |
Use absolute path of spec file
Diffstat (limited to 'ipsbuild.py')
-rwxr-xr-x | ipsbuild.py | 2 |
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) |