Skip to content

Commit

Permalink
Merge pull request #536 from anantshri/develop
Browse files Browse the repository at this point in the history
moving distro independent stuff above distro specific installs
  • Loading branch information
viyatb committed Jan 19, 2016
2 parents b290d4c + 3a2ad71 commit 63be070
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions install/install.py
Expand Up @@ -110,13 +110,15 @@ def install(self, cmd_arguments):
print("Please enter a valid number")
continue

# First all distro independent stuff is installed
self.install_restricted_from_cfg(self.restricted_cfg)

if distro_num != 0:
self.run_command(cp.get(cp.sections()[int(distro_num)-1], "install"))
else:
print("Skipping distro related installation :(")

# First all distro independent stuff is installed
self.install_restricted_from_cfg(self.restricted_cfg)


if args.core_only:
return
Expand Down

0 comments on commit 63be070

Please sign in to comment.