summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()