summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-06-03 09:23:56 +0000
committerBaserock Gerrit <gerrit@baserock.org>2015-06-03 10:05:47 +0000
commit4ff0ecb45170b024d29399a696306d927909479e (patch)
tree702b998c7d1478e880a6febaf255add49539ba99 /extensions
parent86db0239ca262745c16bd42a31a3b09e43c71588 (diff)
downloaddefinitions-4ff0ecb45170b024d29399a696306d927909479e.tar.gz
Fix install-essential-files
Change-Id: I6ace782d08aaa476e9da07d295724734e41b9837
Diffstat (limited to 'extensions')
-rwxr-xr-xextensions/install-essential-files.configure3
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/install-essential-files.configure b/extensions/install-essential-files.configure
index cce9a5a5..bed394df 100755
--- a/extensions/install-essential-files.configure
+++ b/extensions/install-essential-files.configure
@@ -35,8 +35,7 @@ class InstallEssentialFilesConfigureExtension(cliapp.Application):
self.install_essential_files(target_root)
def install_essential_files(self, target_root):
- command = os.path.join(os.path.dirname(__file__),
- "install-files.configure")
+ command = os.path.join("extensions/install-files.configure")
subprocess.check_call([command, target_root])
InstallEssentialFilesConfigureExtension().run()